 |
ServiceTypes Enumeration |
Creates a service object and adds it to the specified service control manager database.
CreateService function Namespace: Xcalibur.NativeMethods.V2.ServicesAssembly: Xcalibur.NativeMethods.V2 (in Xcalibur.NativeMethods.V2.dll) Version: 1.0.1.0
SyntaxPublic Enumeration ServiceTypes
public enum class ServiceTypes
Members| Member name | Value | Description |
|---|
| KernelDriver | 1 |
Driver service.
|
| FileSystemDriver | 2 |
File system driver service.
|
| Adapter | 4 |
Reserved.
|
| RecognizerDriver | 8 |
Reserved.
|
| Driver | 11 |
Services of type and .
|
| Win32OwnProcess | 16 |
Service that runs in its own process.
|
| Win32ShareProcess | 32 |
Service that shares a process with one or more other services.
|
| Win32 | 48 |
Services of type and .
|
| UserOwnProcess | 80 |
The service runs in its own process under the logged-on user account.
|
| UserShareProcess | 96 |
The service shares a process with one or more other services that run under the logged-on
user account.
|
| InteractiveProcess | 256 |
The service can interact with the desktop.
|
| All | 319 |
All access.
|
See Also