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.
 
 
 
 
 
 

107 lines
2.1 KiB

#include "inetsrvpch.h"
#pragma hdrstop
#include <unknwn.h>
#include <cmdtree.h>
#include <ntquery.h>
static
HRESULT
WINAPI
LoadIFilter(
WCHAR const * pwcsPath,
IUnknown * pUnkOuter,
void ** ppIUnk
)
{
return HRESULT_FROM_WIN32(ERROR_PROC_NOT_FOUND);
}
static
HRESULT
WINAPI
LoadIFilterEx(
WCHAR const * pwcsPath,
DWORD dwFlags,
REFIID riid,
void ** ppIUnk
)
{
return HRESULT_FROM_WIN32(ERROR_PROC_NOT_FOUND);
}
static
HRESULT
WINAPI
LocateCatalogsW(
WCHAR const * pwszScope,
ULONG iBmk,
WCHAR * pwszMachine,
ULONG * pccMachine,
WCHAR * pwszCat,
ULONG * pccCat
)
{
return HRESULT_FROM_WIN32(ERROR_PROC_NOT_FOUND);
}
static
HRESULT
WINAPI
CIState(
WCHAR const * pwcsCat,
WCHAR const * pwcsMachine,
CI_STATE * pCiState
)
{
return HRESULT_FROM_WIN32(ERROR_PROC_NOT_FOUND);
}
static
HRESULT
WINAPI
CITextToFullTreeEx(
WCHAR const * pwszRestriction,
ULONG ulDialect,
WCHAR const * pwszColumns,
WCHAR const * pwszSortColumns, // may be NULL
WCHAR const * pwszGroupings, // may be NULL
DBCOMMANDTREE * * ppTree,
ULONG cProperties,
CIPROPERTYDEF * pProperties,
LCID LocaleID
)
{
return HRESULT_FROM_WIN32(ERROR_PROC_NOT_FOUND);
}
static
HRESULT
WINAPI
CIMakeICommand(
ICommand ** ppCommand,
ULONG cScope,
DWORD const * aDepths,
WCHAR const * const * awcsScope,
WCHAR const * const * awcsCatalogs,
WCHAR const * const * awcsMachine
)
{
return HRESULT_FROM_WIN32(ERROR_PROC_NOT_FOUND);
}
//
// !! WARNING !! The entries below must be in alphabetical order, and are CASE SENSITIVE (eg lower case comes last!)
//
DEFINE_PROCNAME_ENTRIES(query)
{
DLPENTRY(CIMakeICommand)
DLPENTRY(CIState)
DLPENTRY(CITextToFullTreeEx)
DLPENTRY(LoadIFilter)
DLPENTRY(LoadIFilterEx)
DLPENTRY(LocateCatalogsW)
};
DEFINE_PROCNAME_MAP(query)