[pywin32-checkins] pywin32/win32/src PythonService.cpp,1.9,1.10
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: <mha...@us...> - 2003-11-08 00:56:40
|
Update of /cvsroot/pywin32/pywin32/win32/src In directory sc8-pr-cvs1:/tmp/cvs-serv27873 Modified Files: PythonService.cpp Log Message: Autoduck corrections for the servicemanager module. Index: PythonService.cpp =================================================================== RCS file: /cvsroot/pywin32/pywin32/win32/src/PythonService.cpp,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** PythonService.cpp 25 Oct 2003 05:53:01 -0000 1.9 --- PythonService.cpp 8 Nov 2003 00:56:36 -0000 1.10 *************** *** 421,426 **** } ! // @module servicemanager|A module built in to PythonService.exe (and therefore only available to Python service programs). ! // <nl>The module <o win32service> provides other service facilities. static struct PyMethodDef servicemanager_functions[] = { {"CoInitializeEx", PyCoInitializeEx, 1}, // @pymeth CoInitializeEx| --- 421,430 ---- } ! // @module servicemanager|A module that interfaces with the Windows Service Control Manager. While this ! // module can be imported by regular Python programs, it is only useful when used by a Python program ! // hosting a service - and even then is generally used automatically by the Python Service framework. ! // See the pipeTestService sample for an example of using this module. ! // <nl>The module <o win32service> and <o win32serviceutil> provide other facilities for controlling ! // and managing services. static struct PyMethodDef servicemanager_functions[] = { {"CoInitializeEx", PyCoInitializeEx, 1}, // @pymeth CoInitializeEx| |