ssbase.cpp
上传用户:linpin
上传日期:2022-02-22
资源大小:24k
文件大小:1k
源码类别:

屏幕保护

开发平台:

Visual C++

  1. // ssbase.cpp : Defines the initialization routines for the DLL.
  2. //
  3. #include "stdafx.h"
  4. #include <afxdllx.h>
  5. #ifdef _DEBUG
  6. #define new DEBUG_NEW
  7. #undef THIS_FILE
  8. static char THIS_FILE[] = __FILE__;
  9. #endif
  10. static AFX_EXTENSION_MODULE SsbaseDLL = { NULL, NULL };
  11. extern "C" int APIENTRY
  12. DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved)
  13. {
  14. if (dwReason == DLL_PROCESS_ATTACH)
  15. {
  16. TRACE0("SSBASE.DLL Initializing!n");
  17. // Extension DLL one-time initialization
  18. AfxInitExtensionModule(SsbaseDLL, hInstance);
  19. // Insert this DLL into the resource chain
  20. new CDynLinkLibrary(SsbaseDLL);
  21. }
  22. else if (dwReason == DLL_PROCESS_DETACH)
  23. {
  24. TRACE0("SSBASE.DLL Terminating!n");
  25. }
  26. return 1;   // ok
  27. }