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.

45 lines
1.3 KiB

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 1997.
  5. //
  6. // File: cifwexp.hxx
  7. //
  8. // Contents: Exports from cifrmwrk.dll that are not specified in the
  9. // frakework interface but are still needed.
  10. //
  11. // History: 2-26-97 srikants Created
  12. //
  13. //----------------------------------------------------------------------------
  14. #pragma once
  15. #include <ciintf.h>
  16. #if defined(__cplusplus)
  17. extern "C"
  18. {
  19. #endif
  20. class PIInternalQuery;
  21. SCODE MakeGenericQuery( IDBProperties * pDbProperties,
  22. PIInternalQuery ** ppQuery );
  23. SCODE MakeGenericQueryForDocStore( IDBProperties * pDbProperties,
  24. ICiCDocStore * pDocStore,
  25. PIInternalQuery ** ppQuery );
  26. typedef SCODE ( STDAPICALLTYPE * T_MakeGenericQuery )
  27. ( IDBProperties * pDbProperties,
  28. PIInternalQuery ** ppQuery );
  29. typedef SCODE ( STDAPICALLTYPE * T_MakeGenericQueryForDocStore )
  30. ( IDBProperties * pDbProperties,
  31. ICiCDocStore * pDocStore,
  32. PIInternalQuery ** ppQuery );
  33. #if defined(__cplusplus)
  34. }
  35. #endif