blob: cb315adadedf728a3f356bbc09d6f31c0e242908 [file] [log] [blame]
Dan Willemsen09eb3b12015-09-16 14:34:17 -07001// Copyright 2015 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
Dan Willemsenbc60c3c2021-12-15 01:09:00 -08005//go:build windows
Dan Willemsen09eb3b12015-09-16 14:34:17 -07006
7package registry
8
9import "syscall"
10
Dan Willemsen09eb3b12015-09-16 14:34:17 -070011const (
12 _REG_OPTION_NON_VOLATILE = 0
13
14 _REG_CREATED_NEW_KEY = 1
15 _REG_OPENED_EXISTING_KEY = 2
16
17 _ERROR_NO_MORE_ITEMS syscall.Errno = 259
18)
19
Dan Willemsen38f2dba2016-07-08 14:54:35 -070020func LoadRegLoadMUIString() error {
21 return procRegLoadMUIStringW.Find()
22}
23
Dan Willemsen09eb3b12015-09-16 14:34:17 -070024//sys regCreateKeyEx(key syscall.Handle, subkey *uint16, reserved uint32, class *uint16, options uint32, desired uint32, sa *syscall.SecurityAttributes, result *syscall.Handle, disposition *uint32) (regerrno error) = advapi32.RegCreateKeyExW
25//sys regDeleteKey(key syscall.Handle, subkey *uint16) (regerrno error) = advapi32.RegDeleteKeyW
26//sys regSetValueEx(key syscall.Handle, valueName *uint16, reserved uint32, vtype uint32, buf *byte, bufsize uint32) (regerrno error) = advapi32.RegSetValueExW
27//sys regEnumValue(key syscall.Handle, index uint32, name *uint16, nameLen *uint32, reserved *uint32, valtype *uint32, buf *byte, buflen *uint32) (regerrno error) = advapi32.RegEnumValueW
28//sys regDeleteValue(key syscall.Handle, name *uint16) (regerrno error) = advapi32.RegDeleteValueW
Dan Willemsen38f2dba2016-07-08 14:54:35 -070029//sys regLoadMUIString(key syscall.Handle, name *uint16, buf *uint16, buflen uint32, buflenCopied *uint32, flags uint32, dir *uint16) (regerrno error) = advapi32.RegLoadMUIStringW
Dan Willemsen09eb3b12015-09-16 14:34:17 -070030
31//sys expandEnvironmentStrings(src *uint16, dst *uint16, size uint32) (n uint32, err error) = kernel32.ExpandEnvironmentStringsW