Windows NT 4.0 source code leak
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.

26 lines
535 B

4 years ago
  1. /*==========================================================================
  2. *
  3. * Copyright (C) 1995 Microsoft Corporation. All Rights Reserved.
  4. *
  5. * File: dllmain.c
  6. * Content: DPLAY.DLL initialization
  7. * History:
  8. * Date By Reason
  9. * ==== == ======
  10. *
  11. ***************************************************************************/
  12. #include "windows.h"
  13. /*
  14. * DllMain
  15. */
  16. HINSTANCE hInst;
  17. BOOL WINAPI DllMain(HINSTANCE hmod, DWORD dwReason, LPVOID lpvReserved)
  18. {
  19. hInst = hmod;
  20. return TRUE;
  21. } /* DllMain */