Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for RegEnumKeyEx (0.47 sec)

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

    	if err != nil {
    		return 0, err
    	}
    	return Key(subkey), nil
    }
    
    // ReadSubKeyNames returns the names of subkeys of key k.
    func (k Key) ReadSubKeyNames() ([]string, error) {
    	// RegEnumKeyEx must be called repeatedly and to completion.
    	// During this time, this goroutine cannot migrate away from
    	// its current thread. See #49320.
    	runtime.LockOSThread()
    	defer runtime.UnlockOSThread()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top