Heaven.cpp
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:0k
源码类别:

模拟服务器

开发平台:

C/C++

  1. // Heaven.cpp : Defines the entry point for the DLL application.
  2. //
  3. #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
  4. #ifndef _WINDOWS_
  5. #define WIN32_LEAN_AND_MEAN
  6. #include <windows.h>
  7. #undef WIN32_LEAN_AND_MEAN
  8. #endif
  9. #pragma message( "* ATTENTION : PLEASE USE IT IN ANSI SETTING *" )
  10. BOOL APIENTRY DllMain( HANDLE hModule, 
  11.                        DWORD  ul_reason_for_call, 
  12.                        LPVOID lpReserved
  13.  )
  14. {
  15.     return TRUE;
  16. }