Leaked source code of windows server 2003
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

  1. /*++
  2. Copyright (c) 1999 Microsoft Corporation
  3. Module Name:
  4. jitdump.h
  5. Abstract:
  6. This file contains routines to dump typelib generated proxy information.
  7. Author:
  8. Yong Qu (yongqu) August 24 1999
  9. Revision History:
  10. --*/
  11. #ifndef _JITDUMP_H_
  12. #define _JITDUMP_H_
  13. typedef
  14. HRESULT (STDAPICALLTYPE * PFNCREATEPROXYFROMTYPEINFO)
  15. (
  16. IN ITypeInfo * pTypeInfo,
  17. IN IUnknown * punkOuter,
  18. IN REFIID riid,
  19. OUT IRpcProxyBuffer ** ppProxy,
  20. OUT void ** ppv
  21. );
  22. typedef
  23. HRESULT (STDAPICALLTYPE * PFNCREATESTUBFROMTYPEINFO)
  24. (
  25. IN ITypeInfo * pTypeInfo,
  26. IN REFIID riid,
  27. IN IUnknown * punkServer,
  28. OUT IRpcStubBuffer ** ppStub
  29. );
  30. #include <ndrexts.hxx>
  31. #endif // _JITDUMP_H_