axmol/test_win32/winmain.h

17 lines
359 B
C

#ifndef __WINMAIN_H__
#define __WINMAIN_H__
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
// Windows Header Files:
#include <windows.h>
// C RunTime Header Files
#include <stdlib.h>
#include <malloc.h>
#include <memory.h>
#include <tchar.h>
extern HINSTANCE g_hInstance;
#endif // __WINMAIN_H__