Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for HKEY_CLASSES_ROOT (0.3 sec)

  1. src/internal/syscall/windows/registry/key.go

    	// An application can use these keys as entry points to the registry.
    	// Normally these keys are used in OpenKey to open new keys,
    	// but they can also be used anywhere a Key is required.
    	CLASSES_ROOT   = Key(syscall.HKEY_CLASSES_ROOT)
    	CURRENT_USER   = Key(syscall.HKEY_CURRENT_USER)
    	LOCAL_MACHINE  = Key(syscall.HKEY_LOCAL_MACHINE)
    	USERS          = Key(syscall.HKEY_USERS)
    	CURRENT_CONFIG = Key(syscall.HKEY_CURRENT_CONFIG)
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. src/syscall/types_windows.go

    	Size              uint32
    	Error             uint32
    	ChainIndex        uint32
    	ElementIndex      uint32
    	ExtraPolicyStatus Pointer
    }
    
    const (
    	// do not reorder
    	HKEY_CLASSES_ROOT = 0x80000000 + iota
    	HKEY_CURRENT_USER
    	HKEY_LOCAL_MACHINE
    	HKEY_USERS
    	HKEY_PERFORMANCE_DATA
    	HKEY_CURRENT_CONFIG
    	HKEY_DYN_DATA
    
    	KEY_QUERY_VALUE        = 1
    	KEY_SET_VALUE          = 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	Index            uint32
    	Flags            uint32
    	SecondarySigs    uint32
    	VerifiedSigIndex uint32
    	CryptoPolicy     *CertStrongSignPara
    }
    
    const (
    	// do not reorder
    	HKEY_CLASSES_ROOT = 0x80000000 + iota
    	HKEY_CURRENT_USER
    	HKEY_LOCAL_MACHINE
    	HKEY_USERS
    	HKEY_PERFORMANCE_DATA
    	HKEY_CURRENT_CONFIG
    	HKEY_DYN_DATA
    
    	KEY_QUERY_VALUE        = 1
    	KEY_SET_VALUE          = 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Gettid", Func, 0},
    		{"Gettimeofday", Func, 0},
    		{"Getuid", Func, 0},
    		{"Getwd", Func, 0},
    		{"Getxattr", Func, 1},
    		{"HANDLE_FLAG_INHERIT", Const, 0},
    		{"HKEY_CLASSES_ROOT", Const, 0},
    		{"HKEY_CURRENT_CONFIG", Const, 0},
    		{"HKEY_CURRENT_USER", Const, 0},
    		{"HKEY_DYN_DATA", Const, 0},
    		{"HKEY_LOCAL_MACHINE", Const, 0},
    		{"HKEY_PERFORMANCE_DATA", Const, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  5. api/go1.txt

    pkg syscall (windows-386), const GetFileExMaxInfoLevel ideal-int
    pkg syscall (windows-386), const HANDLE_FLAG_INHERIT ideal-int
    pkg syscall (windows-386), const HKEY_CLASSES_ROOT ideal-int
    pkg syscall (windows-386), const HKEY_CURRENT_CONFIG ideal-int
    pkg syscall (windows-386), const HKEY_CURRENT_USER ideal-int
    pkg syscall (windows-386), const HKEY_DYN_DATA ideal-int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  6. api/go1.1.txt

    pkg syscall (windows-386), const GetFileExInfoStandard = 0
    pkg syscall (windows-386), const GetFileExMaxInfoLevel = 1
    pkg syscall (windows-386), const HANDLE_FLAG_INHERIT = 1
    pkg syscall (windows-386), const HKEY_CLASSES_ROOT = 2147483648
    pkg syscall (windows-386), const HKEY_CURRENT_CONFIG = 2147483653
    pkg syscall (windows-386), const HKEY_CURRENT_USER = 2147483649
    pkg syscall (windows-386), const HKEY_DYN_DATA = 2147483654
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
Back to top