[pywin32-checkins] pywin32/Pythonwin/pywin/scintilla scintillacon.py,1.14,1.15
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: <mha...@us...> - 2003-07-02 04:10:21
|
Update of /cvsroot/pywin32/pywin32/Pythonwin/pywin/scintilla In directory sc8-pr-cvs1:/tmp/cvs-serv21391 Modified Files: scintillacon.py Log Message: Couple of new functions generated by h2py Index: scintillacon.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/Pythonwin/pywin/scintilla/scintillacon.py,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** scintillacon.py 27 Feb 2003 23:21:21 -0000 1.14 --- scintillacon.py 2 Jul 2003 04:10:18 -0000 1.15 *************** *** 2,5 **** --- 2,9 ---- # Included from BaseTsd.h + def HandleToUlong(h): return HandleToULong(h) + + def UlongToHandle(ul): return ULongToHandle(ul) + def UlongToPtr(ul): return ULongToPtr(ul) |