[pywin32-checkins] pywin32/com/win32comext/ifilter/src PyIFilter.cpp, 1.6, 1.7
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2008-11-13 11:12:06
|
Update of /cvsroot/pywin32/pywin32/com/win32comext/ifilter/src In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv9817/com/win32comext/ifilter/src Modified Files: PyIFilter.cpp Log Message: Yet more TCHAR/64bit and other misc changes from py3k branch. Index: PyIFilter.cpp =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32comext/ifilter/src/PyIFilter.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** PyIFilter.cpp 2 Mar 2005 02:25:02 -0000 1.6 --- PyIFilter.cpp 13 Nov 2008 11:11:58 -0000 1.7 *************** *** 283,287 **** #define ADD_IID(tok) AddIID(dict, #tok, tok) ! // @object PyIFilter|Description of the interface static struct PyMethodDef PyIFilter_methods[] = { --- 283,287 ---- #define ADD_IID(tok) AddIID(dict, #tok, tok) ! // @object PyIFilter|Wraps the interfaces used with Indexing Service filtering static struct PyMethodDef PyIFilter_methods[] = { *************** *** 334,338 **** // Tell pywintypes that IFilter error messages can be extracted from // query.dll ! HMODULE hmod = GetModuleHandle("query.dll"); if (hmod) // According to FiltErr.h, "Codes 0x1700-0x172F are reserved for FILTER" --- 334,338 ---- // Tell pywintypes that IFilter error messages can be extracted from // query.dll ! HMODULE hmod = GetModuleHandle(_T("query.dll")); if (hmod) // According to FiltErr.h, "Codes 0x1700-0x172F are reserved for FILTER" *************** *** 380,382 **** ADD_CONSTANT(FILTER_S_LAST_TEXT); // NOTE: New constants should go in ifiltercon.py ! } \ No newline at end of file --- 380,382 ---- ADD_CONSTANT(FILTER_S_LAST_TEXT); // NOTE: New constants should go in ifiltercon.py ! } |