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

模拟服务器

开发平台:

C/C++

  1. // knw.cpp : Defines the entry point for the DLL application.
  2. //
  3. #include "stdafx.h"
  4. #include "knw.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. }