dhcp: add dhcp scope stats (#1840)

Signed-off-by: Jan-Otto Kröpke <mail@jkroepke.de>
This commit is contained in:
Jan-Otto Kröpke
2025-01-20 11:03:03 +00:00
committed by GitHub
parent d31ce0507c
commit 5836a7dbf2
8 changed files with 973 additions and 195 deletions

View File

@@ -0,0 +1,15 @@
package win32api
import "golang.org/x/sys/windows"
type (
DATE_TIME = windows.Filetime
DWORD = uint32
LPWSTR struct {
*uint16
}
)
func (s LPWSTR) String() string {
return windows.UTF16PtrToString(s.uint16)
}