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.

27 lines
876 B

  1. // diacreate_int.h - creation helper functions for DIA initialization - Microsoft internal version
  2. //-----------------------------------------------------------------
  3. // Microsoft Confidential
  4. // Copyright 2000 Microsoft Corporation. All Rights Reserved.
  5. //
  6. //---------------------------------------------------------------
  7. #ifndef _DIACREATE_INT_H_
  8. #define _DIACREATE_INT_H_
  9. //
  10. // Create a dia data source object from a static dia library
  11. //
  12. HRESULT STDMETHODCALLTYPE DiaCoCreate(
  13. REFCLSID rclsid,
  14. REFIID riid,
  15. void **ppv);
  16. //
  17. // Get PDB pointer for IDiaDataSource/IDiaSession
  18. //
  19. // Note - Fragile, use _VERY_ sparingly. Exists only for pat's request
  20. //
  21. HRESULT STDMETHODCALLTYPE GetRawPdbPtrForDataSource( const IDiaDataSource* pSource, PDB **pppdb );
  22. #endif