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

//+---------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1992 - 1997.
//
// File: cifwexp.hxx
//
// Contents: Exports from cifrmwrk.dll that are not specified in the
// frakework interface but are still needed.
//
// History: 2-26-97 srikants Created
//
//----------------------------------------------------------------------------
#pragma once
#include <ciintf.h>
#if defined(__cplusplus)
extern "C"
{
#endif
class PIInternalQuery;
SCODE MakeGenericQuery( IDBProperties * pDbProperties,
PIInternalQuery ** ppQuery );
SCODE MakeGenericQueryForDocStore( IDBProperties * pDbProperties,
ICiCDocStore * pDocStore,
PIInternalQuery ** ppQuery );
typedef SCODE ( STDAPICALLTYPE * T_MakeGenericQuery )
( IDBProperties * pDbProperties,
PIInternalQuery ** ppQuery );
typedef SCODE ( STDAPICALLTYPE * T_MakeGenericQueryForDocStore )
( IDBProperties * pDbProperties,
ICiCDocStore * pDocStore,
PIInternalQuery ** ppQuery );
#if defined(__cplusplus)
}
#endif