diff options
author | Bryan McNulty <bryanmcnulty@protonmail.com> | 2025-04-19 11:19:58 -0500 |
---|---|---|
committer | Bryan McNulty <bryanmcnulty@protonmail.com> | 2025-04-19 11:19:58 -0500 |
commit | 2a6559ae72c2570b76de5f8a2f8021167d39438e (patch) | |
tree | cf81c580ed7f74ae3bd58fca08c00f4c78f9d3b4 /internal | |
parent | cb8c332d79dc46e563c6ee44ed0e03db0b95dbee (diff) | |
download | goexec-2a6559ae72c2570b76de5f8a2f8021167d39438e.tar.gz goexec-2a6559ae72c2570b76de5f8a2f8021167d39438e.zip |
Moved Windows constants
Diffstat (limited to 'internal')
-rw-r--r-- | internal/windows/const.go | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/internal/windows/const.go b/internal/windows/const.go deleted file mode 100644 index 4c4fbe6..0000000 --- a/internal/windows/const.go +++ /dev/null @@ -1,37 +0,0 @@ -package windows - -const ( - // Windows error codes - ERROR_FILE_NOT_FOUND uint32 = 0x00000002 - ERROR_SERVICE_REQUEST_TIMEOUT uint32 = 0x0000041d - ERROR_SERVICE_DOES_NOT_EXIST uint32 = 0x00000424 - ERROR_SERVICE_NOT_ACTIVE uint32 = 0x00000426 - - // Windows service/scm constants - SERVICE_BOOT_START uint32 = 0x00000000 - SERVICE_SYSTEM_START uint32 = 0x00000001 - SERVICE_AUTO_START uint32 = 0x00000002 - SERVICE_DEMAND_START uint32 = 0x00000003 - SERVICE_DISABLED uint32 = 0x00000004 - - // https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-scmr/4e91ff36-ab5f-49ed-a43d-a308e72b0b3c - SERVICE_CONTINUE_PENDING uint32 = 0x00000005 - SERVICE_PAUSE_PENDING uint32 = 0x00000006 - SERVICE_PAUSED uint32 = 0x00000007 - SERVICE_RUNNING uint32 = 0x00000004 - SERVICE_START_PENDING uint32 = 0x00000002 - SERVICE_STOP_PENDING uint32 = 0x00000003 - SERVICE_STOPPED uint32 = 0x00000001 - - SERVICE_WIN32_OWN_PROCESS uint32 = 0x00000010 - - SERVICE_CONTROL_STOP uint32 = 0x00000001 - SC_MANAGER_CREATE_SERVICE uint32 = 0x00000002 - - // https://learn.microsoft.com/en-us/windows/win32/services/service-security-and-access-rights - SERVICE_QUERY_CONFIG uint32 = 0x00000001 - SERVICE_CHANGE_CONFIG uint32 = 0x00000002 - SERVICE_START uint32 = 0x00000010 - SERVICE_STOP uint32 = 0x00000020 - SERVICE_DELETE uint32 = 0x00010000 // special permission -) |