123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- /* this ALWAYS GENERATED file contains the definitions for the interfaces */
- /* File created by MIDL compiler version 2.00.0102 */
- /* at Wed Oct 30 17:25:28 1996
- */
- //@@MIDL_FILE_HEADING( )
- #include "rpc.h"
- #include "rpcndr.h"
- #ifndef COM_NO_WINDOWS_H
- #include "windows.h"
- #include "ole2.h"
- #endif /*COM_NO_WINDOWS_H*/
- #ifndef __Lookup_h__
- #define __Lookup_h__
- #ifdef __cplusplus
- extern "C"{
- #endif
- /* Forward Declarations */
- #ifndef __ILookup_FWD_DEFINED__
- #define __ILookup_FWD_DEFINED__
- typedef interface ILookup ILookup;
- #endif /* __ILookup_FWD_DEFINED__ */
- /* header files for imported files */
- #include "unknwn.h"
- void __RPC_FAR * __RPC_USER MIDL_user_allocate(size_t);
- void __RPC_USER MIDL_user_free( void __RPC_FAR * );
- #ifndef __ILookup_INTERFACE_DEFINED__
- #define __ILookup_INTERFACE_DEFINED__
- /****************************************
- * Generated header for interface: ILookup
- * at Wed Oct 30 17:25:28 1996
- * using MIDL 2.00.0102
- ****************************************/
- /* [unique][uuid][object] */
- EXTERN_C const IID IID_ILookup;
- #if defined(__cplusplus) && !defined(CINTERFACE)
-
- interface ILookup : public IUnknown
- {
- public:
- virtual HRESULT __stdcall LookupByName(
- /* [in] */ LPTSTR lpName,
- /* [string][out] */ WCHAR __RPC_FAR *__RPC_FAR *lplpNumber) = 0;
-
- virtual HRESULT __stdcall LookupByNumber(
- /* [in] */ LPSTR lpNumber,
- /* [string][out] */ WCHAR __RPC_FAR *__RPC_FAR *lplpName) = 0;
-
- };
-
- #else /* C style interface */
- typedef struct ILookupVtbl
- {
-
- HRESULT ( __stdcall __RPC_FAR *QueryInterface )(
- ILookup __RPC_FAR * This,
- /* [in] */ REFIID riid,
- /* [out] */ void __RPC_FAR *__RPC_FAR *ppvObject);
-
- ULONG ( __stdcall __RPC_FAR *AddRef )(
- ILookup __RPC_FAR * This);
-
- ULONG ( __stdcall __RPC_FAR *Release )(
- ILookup __RPC_FAR * This);
-
- HRESULT ( __stdcall __RPC_FAR *LookupByName )(
- ILookup __RPC_FAR * This,
- /* [in] */ LPTSTR lpName,
- /* [string][out] */ WCHAR __RPC_FAR *__RPC_FAR *lplpNumber);
-
- HRESULT ( __stdcall __RPC_FAR *LookupByNumber )(
- ILookup __RPC_FAR * This,
- /* [in] */ LPSTR lpNumber,
- /* [string][out] */ WCHAR __RPC_FAR *__RPC_FAR *lplpName);
-
- } ILookupVtbl;
- interface ILookup
- {
- CONST_VTBL struct ILookupVtbl __RPC_FAR *lpVtbl;
- };
-
- #ifdef COBJMACROS
- #define ILookup_QueryInterface(This,riid,ppvObject) \
- (This)->lpVtbl -> QueryInterface(This,riid,ppvObject)
- #define ILookup_AddRef(This) \
- (This)->lpVtbl -> AddRef(This)
- #define ILookup_Release(This) \
- (This)->lpVtbl -> Release(This)
- #define ILookup_LookupByName(This,lpName,lplpNumber) \
- (This)->lpVtbl -> LookupByName(This,lpName,lplpNumber)
- #define ILookup_LookupByNumber(This,lpNumber,lplpName) \
- (This)->lpVtbl -> LookupByNumber(This,lpNumber,lplpName)
- #endif /* COBJMACROS */
- #endif /* C style interface */
- HRESULT __stdcall ILookup_LookupByName_Proxy(
- ILookup __RPC_FAR * This,
- /* [in] */ LPTSTR lpName,
- /* [string][out] */ WCHAR __RPC_FAR *__RPC_FAR *lplpNumber);
- void __RPC_STUB ILookup_LookupByName_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- HRESULT __stdcall ILookup_LookupByNumber_Proxy(
- ILookup __RPC_FAR * This,
- /* [in] */ LPSTR lpNumber,
- /* [string][out] */ WCHAR __RPC_FAR *__RPC_FAR *lplpName);
- void __RPC_STUB ILookup_LookupByNumber_Stub(
- IRpcStubBuffer *This,
- IRpcChannelBuffer *_pRpcChannelBuffer,
- PRPC_MESSAGE _pRpcMessage,
- DWORD *_pdwStubPhase);
- #endif /* __ILookup_INTERFACE_DEFINED__ */
- /* Additional Prototypes for ALL interfaces */
- /* end of Additional Prototypes */
- #ifdef __cplusplus
- }
- #endif
- #endif
|