Descent3/lib/DDAccess.h

60 lines
1.6 KiB
C
Raw Normal View History

/*
* Descent 3
* Copyright (C) 2024 Parallax Software
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
--- HISTORICAL COMMENTS FOLLOW ---
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)
// 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