mirror of https://github.com/tongzx/nt5src
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
29 lines
855 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1999
|
|
//
|
|
// File: FNReg.h
|
|
//
|
|
// Contents: Registration routines for IFilterNotify proxy. Built
|
|
// from macros in RPCProxy.h
|
|
//
|
|
// History: 24-Mar-1999 KyleP Created
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#if defined __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern CLSID FNPrx_CLSID;
|
|
BOOL STDAPICALLTYPE FNPrxDllMain( HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved);
|
|
HRESULT STDAPICALLTYPE FNPrxDllRegisterServer();
|
|
HRESULT STDAPICALLTYPE FNPrxDllUnregisterServer();
|
|
HRESULT STDAPICALLTYPE FNPrxDllGetClassObject ( const IID * const rclsid, const IID * const riid, void ** ppv );
|
|
|
|
#if defined __cplusplus
|
|
}
|
|
#endif
|