[pywin32-checkins] pywin32/com/win32com/makegw makegwparse.py,1.10,1.11
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: <mha...@us...> - 2003-10-08 23:47:11
|
Update of /cvsroot/pywin32/pywin32/com/win32com/makegw In directory sc8-pr-cvs1:/tmp/cvs-serv25884 Modified Files: makegwparse.py Log Message: Yet more hacks to this hackiest of all tools Index: makegwparse.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32com/makegw/makegwparse.py,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** makegwparse.py 8 Oct 2003 04:34:11 -0000 1.10 --- makegwparse.py 8 Oct 2003 23:47:07 -0000 1.11 *************** *** 521,526 **** --- 521,528 ---- "HWND": (ArgFormatterShort, 0), "HMENU": (ArgFormatterShort, 0), + "HOLEMENU": (ArgFormatterShort, 0), "HICON": (ArgFormatterShort, 0), "UINT": (ArgFormatterShort, 0), + "SVSIF": (ArgFormatterShort, 0), "Control": (ArgFormatterInterface, 0, 1), "DataObject": (ArgFormatterInterface, 0, 1), *************** *** 529,533 **** "DataSource": (ArgFormatterInterface, 0, 1), "DataFormat": (ArgFormatterInterface, 0, 1), ! "ITEMIDLIST": (ArgFormatterIDLIST, 0, 1), "const ITEMIDLIST": (ArgFormatterIDLIST, 0, 1), } --- 531,538 ---- "DataSource": (ArgFormatterInterface, 0, 1), "DataFormat": (ArgFormatterInterface, 0, 1), ! "void **": (ArgFormatterInterface, 2, 2), ! "ITEMIDLIST": (ArgFormatterIDLIST, 0, 0), ! "LPITEMIDLIST": (ArgFormatterIDLIST, 0, 1), ! "LPCITEMIDLIST": (ArgFormatterIDLIST, 0, 1), "const ITEMIDLIST": (ArgFormatterIDLIST, 0, 1), } |