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.

33 lines
370 B

  1. #pragma once
  2. #ifdef _MERGE_PROXYSTUB
  3. extern "C"
  4. {
  5. BOOL
  6. WINAPI
  7. PrxDllMain (
  8. HINSTANCE hInstance,
  9. DWORD dwReason,
  10. LPVOID lpReserved);
  11. STDAPI
  12. PrxDllCanUnloadNow ();
  13. STDAPI
  14. PrxDllGetClassObject (
  15. REFCLSID rclsid,
  16. REFIID riid,
  17. LPVOID* ppv);
  18. STDAPI
  19. PrxDllRegisterServer ();
  20. STDAPI
  21. PrxDllUnregisterServer ();
  22. }
  23. #endif