38 lines
731 B
C
38 lines
731 B
C
|
|
// stdafx.h : include file for standard system include files,
|
|||
|
|
// or project specific include files that are used frequently, but
|
|||
|
|
// are changed infrequently
|
|||
|
|
//
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
|
|||
|
|
|
|||
|
|
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
|
|||
|
|
|
|||
|
|
#include <windows.h>
|
|||
|
|
#include <stdlib.h>
|
|||
|
|
#include <malloc.h>
|
|||
|
|
#include <memory.h>
|
|||
|
|
#include <tchar.h>
|
|||
|
|
#include <map>
|
|||
|
|
#include <vector>
|
|||
|
|
|
|||
|
|
#include "../DNDefine.h"
|
|||
|
|
|
|||
|
|
// TODO: reference additional headers your program requires here
|
|||
|
|
// <20><><EFBFBD><EFBFBD> <20><><EFBFBD>̺귯<CCBA><EAB7AF> <20><>ũ
|
|||
|
|
/*
|
|||
|
|
#ifdef _DEBUG
|
|||
|
|
#pragma comment(lib,"lua51_Debug(MTd).lib")
|
|||
|
|
#else
|
|||
|
|
#pragma comment(lib,"lua51_Release(MT).lib")
|
|||
|
|
#endif // _DEBUG
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
// <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
|
extern "C"
|
|||
|
|
{
|
|||
|
|
#include "lua.h"
|
|||
|
|
#include "lualib.h"
|
|||
|
|
#include "lauxlib.h"
|
|||
|
|
};
|