il_main.c
上传用户:wmy0603
上传日期:2022-05-02
资源大小:1808k
文件大小:1k
源码类别:

压缩解压

开发平台:

Visual C++

  1. //-----------------------------------------------------------------------------
  2. //
  3. // ImageLib Sources
  4. // Copyright (C) 2000-2002 by Denton Woods
  5. // Last modified: 02/16/2002 <--Y2K Compliant! =]
  6. //
  7. // Filename: src-IL/src/il_main.c
  8. //
  9. // Description: Startup function
  10. //
  11. //-----------------------------------------------------------------------------
  12. #include "il_internal.h"
  13. /* Only needed for MSVC++ unless extended to actually do something =) */
  14. #if defined(_WIN32) && defined(_MSC_VER)
  15. BOOL APIENTRY DllMain(HANDLE hModule, DWORD ul_reason_for_call, LPVOID lpReserved)
  16. {
  17. hModule;  ul_reason_for_call;  lpReserved;
  18. if (ul_reason_for_call == DLL_PROCESS_ATTACH) {
  19. //ilInit();
  20. }
  21. return TRUE;
  22. }
  23. #endif