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

Windows编程

开发平台:

Visual C++

  1. #include <windows.h>
  2. // **************************************************************************-
  3. //
  4. // Function: DllMain(HANDLE, DWORD, LPVOID)
  5. //
  6. // **************************************************************************-
  7. //
  8. // Description:
  9. //
  10. // This is the main initialization routine called by the NT kernel when
  11. // a new thread requests use of the DLL.  It's also called when a thread
  12. // stops using the DLL.  A parameter passed to the function identifies the
  13. // reason for calling.
  14. //
  15. // **************************************************************************-
  16. BOOL APIENTRY DllMain(HANDLE hDLL, DWORD dwReason, LPVOID lpReserved)
  17. {
  18.     // Nothing to initialize.
  19.     return TRUE;
  20. }