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
634 B
27 lines
634 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1992 - 1997.
|
|
//
|
|
// File: queryexp.hxx
|
|
//
|
|
// Contents: Misc. Exports from query.dll
|
|
//
|
|
// History: 2-28-97 srikants Created
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#if defined(__cplusplus)
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
SCODE LoadTextFilter( WCHAR const * pwszPath, IFilter ** ppIFilter );
|
|
SCODE LoadBinaryFilter( WCHAR const * pwszPath, IFilter ** ppIFilter );
|
|
|
|
#if defined(__cplusplus)
|
|
}
|
|
#endif
|
|
|