table of contents
other versions
- wheezy 1.4.1-4
NetUserModalsGet(3w) | Wine API | NetUserModalsGet(3w) |
NAME¶
NetUserModalsGet (NETAPI32.@)SYNOPSIS¶
NET_API_STATUS NetUserModalsGet(
LPCWSTR szServer,
DWORD level,
LPBYTE* pbuffer
)
DESCRIPTION¶
Retrieves global information for all users and global groups in the security database.PARAMS¶
szServer [In] Specifies the DNS or the NetBIOS name of the remote server on which the function is to execute. level [In] Information level of the data. 0 Return global passwords parameters. bufptr points to a USER_MODALS_INFO_0 struct. 1 Return logon server and domain controller information. bufptr points to a USER_MODALS_INFO_1 struct. 2 Return domain name and identifier. bufptr points to a USER_MODALS_INFO_2 struct. 3 Return lockout information. bufptr points to a USER_MODALS_INFO_3 struct. pbuffer [In] Buffer that receives the data.RETURNS¶
Success: NERR_Success. Failure: ERROR_ACCESS_DENIED - the user does not have access to the info. NERR_InvalidComputer - computer name is invalid.IMPLEMENTATION¶
Declared in "lmaccess.h". Implemented in "dlls/netapi32/access.c".Oct 2012 | Wine API |