il_main.c
Upload User: wmy0603
Upload Date: 2022-05-02
Package Size: 1808k
Code Size: 1k
Development Platform:

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