Leaked source code of windows server 2003
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.

12 lines
235 B

  1. #include <windows.h>
  2. HANDLE g_hInst = NULL;
  3. BOOL WINAPI DllMain (HANDLE hInst,
  4. ULONG ul_reason_for_call,
  5. LPVOID lpReserved)
  6. {
  7. g_hInst = hInst;
  8. return( TRUE );
  9. }