诸暨麻将添加redis
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 
 

25 wiersze
664 B

  1. #include "Stdafx.h"
  2. #include <afxdllx.h>
  3. //////////////////////////////////////////////////////////////////////////
  4. static AFX_EXTENSION_MODULE GameServerDLL={NULL,NULL};
  5. //DLL µ¼³öÖ÷º¯Êý
  6. extern "C" int APIENTRY DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved)
  7. {
  8. UNREFERENCED_PARAMETER(lpReserved);
  9. if (dwReason==DLL_PROCESS_ATTACH)
  10. {
  11. if (!AfxInitExtensionModule(GameServerDLL, hInstance)) return 0;
  12. new CDynLinkLibrary(GameServerDLL);
  13. }
  14. else if (dwReason==DLL_PROCESS_DETACH)
  15. {
  16. AfxTermExtensionModule(GameServerDLL);
  17. }
  18. return 1;
  19. }
  20. //////////////////////////////////////////////////////////////////////////