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.

28 lines
464 B

  1. #ifndef DLLMAIN__H_
  2. #define DLLMAIN__H_
  3. extern "C"
  4. {
  5. BOOL
  6. APIENTRY
  7. DllMain(
  8. HINSTANCE hInstance,
  9. DWORD dwReason,
  10. LPVOID lpReserved
  11. );
  12. }
  13. STDAPI
  14. DllCanUnloadNow(void);
  15. STDAPI
  16. DllGetClassObject(
  17. REFCLSID rclsid,
  18. REFIID riid,
  19. LPVOID *ppv
  20. );
  21. extern HINSTANCE g_hInst;
  22. #endif // #ifndef DLLMAIN__H_