mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 19:55:23 +00:00
17 lines
253 B
C
17 lines
253 B
C
/* Win32 OS Specific internal header to win32 library */
|
|
|
|
#ifndef WIN32OS_H
|
|
#define WIN32OS_H
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#include <windows.h>
|
|
|
|
#include "gameos.h"
|
|
|
|
typedef struct win32oss_info {
|
|
HWND hwnd;
|
|
HINSTANCE hinst;
|
|
} win32oss_info;
|
|
|
|
|
|
#endif |