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.

29 lines
855 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1999
  5. //
  6. // File: FNReg.h
  7. //
  8. // Contents: Registration routines for IFilterNotify proxy. Built
  9. // from macros in RPCProxy.h
  10. //
  11. // History: 24-Mar-1999 KyleP Created
  12. //
  13. //----------------------------------------------------------------------------
  14. #pragma once
  15. #if defined __cplusplus
  16. extern "C" {
  17. #endif
  18. extern CLSID FNPrx_CLSID;
  19. BOOL STDAPICALLTYPE FNPrxDllMain( HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved);
  20. HRESULT STDAPICALLTYPE FNPrxDllRegisterServer();
  21. HRESULT STDAPICALLTYPE FNPrxDllUnregisterServer();
  22. HRESULT STDAPICALLTYPE FNPrxDllGetClassObject ( const IID * const rclsid, const IID * const riid, void ** ppv );
  23. #if defined __cplusplus
  24. }
  25. #endif