Documentation ¶ Rendered for windows/amd64 Overview ¶ Package registry provides access to Windows registry. Index ¶ type Key func OpenKey(parent syscall.Handle, path string) (*Key, error) func (k *Key) Close() error func (k *Key) CreateSubKey(name string) (nk *Key, openedExisting bool, err error) func (k *Key) DeleteSubKey(name string) error func (k *Key) SetString(name string, value string) error func (k *Key) SetUInt32(name string, value uint32) error Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Key ¶ type Key struct { Handle syscall.Handle } func OpenKey ¶ func OpenKey(parent syscall.Handle, path string) (*Key, error) func (*Key) Close ¶ func (k *Key) Close() error func (*Key) CreateSubKey ¶ func (k *Key) CreateSubKey(name string) (nk *Key, openedExisting bool, err error) func (*Key) DeleteSubKey ¶ func (k *Key) DeleteSubKey(name string) error func (*Key) SetString ¶ func (k *Key) SetString(name string, value string) error func (*Key) SetUInt32 ¶ func (k *Key) SetUInt32(name string, value uint32) error Source Files ¶ View all Source files registry.go Click to show internal directories. Click to hide internal directories.