[pywin32-checkins] pywin32/win32/src/win32print win32print.cpp, 1.23, 1.23.2.1
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Sidnei da S. <dre...@us...> - 2006-12-21 23:17:21
|
Update of /cvsroot/pywin32/pywin32/win32/src/win32print In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19745/win32/src/win32print Modified Files: Tag: AMD64 win32print.cpp Log Message: - Initial work on AMD64 support Index: win32print.cpp =================================================================== RCS file: /cvsroot/pywin32/pywin32/win32/src/win32print/win32print.cpp,v retrieving revision 1.23 retrieving revision 1.23.2.1 diff -C2 -d -r1.23 -r1.23.2.1 *** win32print.cpp 9 Dec 2006 02:56:36 -0000 1.23 --- win32print.cpp 21 Dec 2006 23:17:16 -0000 1.23.2.1 *************** *** 2451,2455 **** &sleep_ms)) // @pyparm int|Sleep||Number of milliseconds to suspend printer return NULL; ! if (PyString_AsStringAndSize(obbuf, (char **)&buf, (int *)&bufsize)==-1) return NULL; if (!(*pfnFlushPrinter)(hprinter, buf, bufsize, &bytes_written, sleep_ms)) --- 2451,2455 ---- &sleep_ms)) // @pyparm int|Sleep||Number of milliseconds to suspend printer return NULL; ! if (PyString_AsStringAndSize(obbuf, (char **)&buf, (Py_ssize_t *)&bufsize)==-1) return NULL; if (!(*pfnFlushPrinter)(hprinter, buf, bufsize, &bytes_written, sleep_ms)) |