GameLib_sdk.cpp
上传用户:lian_0917
上传日期:2013-03-24
资源大小:1151k
文件大小:0k
源码类别:

其他游戏

开发平台:

MultiPlatform

  1. // GameLib_sdk.cpp : Defines the entry point for the DLL application.
  2. //
  3. #include "stdafx.h"
  4. #include "GameLib_sdk.h"
  5. BOOL APIENTRY DllMain( HANDLE hModule, 
  6.                        DWORD  ul_reason_for_call, 
  7.                        LPVOID lpReserved
  8.  )
  9. {
  10. switch (ul_reason_for_call)
  11. {
  12. case DLL_PROCESS_ATTACH:
  13. case DLL_THREAD_ATTACH:
  14. case DLL_THREAD_DETACH:
  15. case DLL_PROCESS_DETACH:
  16. break;
  17. }
  18.     return TRUE;
  19. }