mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-22 02:06:03 +08:00
14 lines
259 B
C
14 lines
259 B
C
#ifndef __MAIN_H__
|
|
#define __MAIN_H__
|
|
|
|
#define WIN32_LEAN_AND_MEAN// Exclude rarely-used stuff from Windows headers
|
|
|
|
// Windows Header Files:
|
|
#include <tchar.h>
|
|
#include <windows.h>
|
|
|
|
// C RunTime Header Files
|
|
#include "platform/CCStdC.h"
|
|
|
|
#endif// __MAIN_H__
|