ROOT.CPP
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // $$root$$.cpp : Defines the initialization routines for the DLL.
  2. //
  3. #include "stdafx.h"
  4. #include <afxdllx.h>
  5. #include "$$root$$.h"
  6. #include "$$filebase$$aw.h"
  7. #ifdef _PSEUDO_DEBUG
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. static AFX_EXTENSION_MODULE $$safe_root$$DLL = { NULL, NULL };
  12. extern "C" int APIENTRY
  13. DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved)
  14. {
  15. if (dwReason == DLL_PROCESS_ATTACH)
  16. {
  17. TRACE0("$$ROOT$$.AWX Initializing!n");
  18. // Extension DLL one-time initialization
  19. AfxInitExtensionModule($$safe_root$$DLL, hInstance);
  20. // Insert this DLL into the resource chain
  21. new CDynLinkLibrary($$safe_root$$DLL);
  22. // Register this custom AppWizard with MFCAPWZ.DLL
  23. SetCustomAppWizClass(&$$safe_root$$aw);
  24. }
  25. else if (dwReason == DLL_PROCESS_DETACH)
  26. {
  27. TRACE0("$$ROOT$$.AWX Terminating!n");
  28. // Terminate the library before destructors are called
  29. AfxTermExtensionModule($$safe_root$$DLL);
  30. }
  31. return 1;   // ok
  32. }