Descent3/lib/DDAccess.h

46 lines
940 B
C
Raw Normal View History

2024-04-16 03:43:29 +00:00
/*
* $Logfile: /DescentIII/Main/lib/DDAccess.h $
* $Revision: 3 $
* $Date: 8/13/97 3:02p $
* $Author: Samir $
*
* Device Dependant Access Manager. (Allow access of libraries to OS information)
*
* $Log: /DescentIII/Main/lib/DDAccess.h $
2024-04-16 18:56:40 +00:00
*
2024-04-16 03:43:29 +00:00
* 3 8/13/97 3:02p Samir
* A 'cleaner' way to do DirectInput mouse stuff.
2024-04-16 18:56:40 +00:00
*
2024-04-16 03:43:29 +00:00
* 2 8/01/97 7:31p Samir
* Slightly better interface.
2024-04-16 18:56:40 +00:00
*
2024-04-16 03:43:29 +00:00
* 1 5/23/97 4:07p Samir
* Device Dependant Data Access Manager.
*
* $NoKeywords: $
*/
#ifndef DDACCESS_H
#define DDACCESS_H
// allows access to DD system information, such as OS specific info.
#define DD_ACCESS_RING
// Win32 region of DD_ACCESS
// Include the standard windows header since API calls are available in DD_ACCESS_RING
// Define any additional messages too.
#if defined(WIN32)
// Headers
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
// Messages
2024-04-16 18:56:40 +00:00
#define WM_SYNCMOUSEACQUIRE (WM_USER + 0)
2024-04-16 03:43:29 +00:00
2024-04-16 18:56:40 +00:00
#endif // WIN32
2024-04-16 03:43:29 +00:00
#endif