Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
434 B

  1. // Copyright (c) 1996-1999 Microsoft Corporation
  2. /*
  3. *
  4. * Minimal DllMain - to keep linker happy.
  5. * DLL otherwise contains just resources.
  6. *
  7. *
  8. * Note: set compiler/linker options to ignore
  9. * default libraries, and set entry point symbol
  10. * to DllMain.
  11. *
  12. */
  13. #include <windows.h>
  14. BOOL WINAPI DllMain( HANDLE hInst,
  15. ULONG ul_reason_for_call,
  16. LPVOID lpReserved )
  17. {
  18. return TRUE;
  19. }