lib/win32/windows/structs.rb in win32-service-2.1.4 vs lib/win32/windows/structs.rb in win32-service-2.1.5
- old
+ new
@@ -66,23 +66,9 @@
length = self[:lpServiceStartName].address - self[:lpDependencies].address - 1
self[:lpDependencies].read_bytes(length).split(0.chr)
end
end
- class SERVICE_STATUS_PROCESS < FFI::Struct
- layout(
- :dwServiceType, :dword,
- :dwCurrentState, :dword,
- :dwControlsAccepted, :dword,
- :dwWin32ExitCode, :dword,
- :dwServiceSpecificExitCode, :dword,
- :dwCheckPoint, :dword,
- :dwWaitHint, :dword,
- :dwProcessId, :dword,
- :dwServiceFlags, :dword
- )
- end
-
class ENUM_SERVICE_STATUS_PROCESS < FFI::Struct
layout(
:lpServiceName, :pointer,
:lpDisplayName, :pointer,
:ServiceStatusProcess, SERVICE_STATUS_PROCESS