#ifndef WIN32_H #define WIN32_H #define WIN32_LEAN_AND_MEAN #include #include #define DIRECTSOUND_VERSION 0x0300 #include typedef HRESULT(__stdcall DirectSoundCreateProc)(GUID*, LPDIRECTSOUND*, IUnknown*); extern DirectSoundCreateProc* gDirectSoundCreateProc; extern HWND gProgramWindow; extern bool gProgramIsActive; extern HANDLE _GNW95_mutex; extern HMODULE gDSoundDLL; bool _LoadDirectX(); void _UnloadDirectX(void); #endif /* WIN32_H */