SERVICE_STATUS_PROCESS structure:
dwServiceType
The type of service. This member can be one of the following values.
Value | Meaning |
- SERVICE_FILE_SYSTEM_DRIVER
- 0x00000002
|
The service is a file system driver.
|
- SERVICE_KERNEL_DRIVER
- 0x00000001
|
The service is a device driver.
|
- SERVICE_WIN32_OWN_PROCESS
- 0x00000010
|
The service runs in its own process.
|
- SERVICE_WIN32_SHARE_PROCESS
- 0x00000020
|
The service shares a process with other services.
|
Ref: https://msdn.microsoft.com/en-us/library/ms685992.aspx
Comments
Post a Comment