|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| No
| Win32s
| No
| Import Library
| -
| Header File
| winsvc.h
| Unicode
| WinNT
| Platform Notes
| None
|
|
|
QUERY_SERVICE_LOCK_STATUS
The QUERY_SERVICE_LOCK_STATUS structure is used by the QueryServiceLockStatus function to return information about the lock status of a service control
manager database.
typedef struct _QUERY_SERVICE_LOCK_STATUS { // qsls
DWORD fIsLocked;
LPTSTR lpLockOwner;
DWORD dwLockDuration;
} QUERY_SERVICE_LOCK_STATUS, * LPQUERY_SERVICE_LOCK_STATUS ;
Members
fIsLocked
Specifies whether the database is locked. If this member is nonzero, the
database is locked. If it is zero, the database is unlocked.
lpLockOwner
Points to a null-terminated string containing the name of the user who
acquired the lock.
dwLockDuration
Specifies the time, in seconds, since the lock was first acquired.
See Also
QueryServiceLockStatus
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
More Online Helps
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|