Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for NetUserGetLocalGroups (0.42 sec)

  1. src/internal/syscall/windows/security_windows.go

    	PrimaryGroupID  uint32
    	Profile         *uint16
    	HomeDirDrive    *uint16
    	PasswordExpired uint32
    }
    
    //sys	NetUserGetLocalGroups(serverName *uint16, userName *uint16, level uint32, flags uint32, buf **byte, prefMaxLen uint32, entriesRead *uint32, totalEntries *uint32) (neterr error) = netapi32.NetUserGetLocalGroups
    
    // GetSystemDirectory retrieves the path to current location of the system
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 07:21:38 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. src/os/user/lookup_windows.go

    	// https://learn.microsoft.com/en-us/windows/win32/api/lmaccess/nf-lmaccess-netusergetlocalgroups
    	// NetUserGetLocalGroups() would return a list of LocalGroupUserInfo0
    	// elements which hold the names of local groups where the user participates.
    	// The list does not follow any sorting order.
    	//
    	// If no groups can be found for this user, NetUserGetLocalGroups() should
    	// always return the SID of a single group called "None", which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  3. src/internal/syscall/windows/zsyscall_windows.go

    	procNetShareAdd                       = modnetapi32.NewProc("NetShareAdd")
    	procNetShareDel                       = modnetapi32.NewProc("NetShareDel")
    	procNetUserGetLocalGroups             = modnetapi32.NewProc("NetUserGetLocalGroups")
    	procRtlGetVersion                     = modntdll.NewProc("RtlGetVersion")
    	procGetProcessMemoryInfo              = modpsapi.NewProc("GetProcessMemoryInfo")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 18.4K bytes
    - Viewed (0)
Back to top