CloseServiceHandle The CloseServiceHandle function closes the following types of handles:· handle to a service control manager object as returned by the OpenSCManager function· handle to a service object as returned by either the OpenService or CreateService function VB4-32,5,6 Declare Function CloseServiceHandle Lib "advapi32.dll" (ByVal hSCObject As Long) As Long |
Operating Systems Supported |
Requires Windows NT 3.1 or later; Win9x/ME: Not supported |
· hSCObject [in] Handle to the service control manager object or the service object to close. |
If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero. To get extended error information, call GetLastError. |
|