dllmain.c 287 B

123456789101112131415
  1. /*
  2. Copyright (c) 1998, 1999 Thai Open Source Software Center Ltd
  3. See the file copying.txt for copying permission.
  4. */
  5. #define STRICT 1
  6. #define WIN32_LEAN_AND_MEAN 1
  7. #include <windows.h>
  8. BOOL WINAPI DllMain(HANDLE hInst, ULONG ul_reason_for_call, LPVOID lpReserved)
  9. {
  10. return TRUE;
  11. }