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.
46 lines
840 B
46 lines
840 B
/*++
|
|
|
|
Copyright (c) 1999 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
jitdump.h
|
|
|
|
Abstract:
|
|
|
|
This file contains routines to dump typelib generated proxy information.
|
|
|
|
Author:
|
|
|
|
Yong Qu (yongqu) August 24 1999
|
|
|
|
Revision History:
|
|
|
|
|
|
--*/
|
|
|
|
#ifndef _JITDUMP_H_
|
|
#define _JITDUMP_H_
|
|
|
|
typedef
|
|
HRESULT (STDAPICALLTYPE * PFNCREATEPROXYFROMTYPEINFO)
|
|
(
|
|
IN ITypeInfo * pTypeInfo,
|
|
IN IUnknown * punkOuter,
|
|
IN REFIID riid,
|
|
OUT IRpcProxyBuffer ** ppProxy,
|
|
OUT void ** ppv
|
|
);
|
|
|
|
typedef
|
|
HRESULT (STDAPICALLTYPE * PFNCREATESTUBFROMTYPEINFO)
|
|
(
|
|
IN ITypeInfo * pTypeInfo,
|
|
IN REFIID riid,
|
|
IN IUnknown * punkServer,
|
|
OUT IRpcStubBuffer ** ppStub
|
|
);
|
|
|
|
#include <ndrexts.hxx>
|
|
|
|
#endif // _JITDUMP_H_
|