home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 15 / AACD15.ISO / AACD / Programming / Python2 / Python20_source / expat / xmltok / dllmain.c < prev    next >
Encoding:
C/C++ Source or Header  |  2000-04-21  |  287 b   |  16 lines

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