26 lines
383 B
C
26 lines
383 B
C
#ifndef _MOTORSND_H_
|
|
#define _MOTORSND_H_
|
|
|
|
// this file must include no one else
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif // __cplusplus
|
|
|
|
|
|
#undef DLL_IMPORT
|
|
#undef DLL_EXPORT
|
|
|
|
//#if (!defined(_DLL_MODULE))
|
|
extern HWND hwndMainSnd;
|
|
extern HINSTANCE SND_g_hResourceHandle;
|
|
extern HINSTANCE SND_hGlobalInst;
|
|
//#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif // __cplusplus
|
|
|
|
#endif //_MOTORSND_H_
|
|
|