Platform SDK: Interprocess Communications |
The NDdeGetShareSecurity function retrieves the security descriptor associated with the DDE share. This is done usually for editing.
UINT NDdeGetShareSecurity( LPTSTR lpszServer, // server name LPTSTR lpszShareName, // share name SECURITY_INFORMATION si, // requested information PSECURITY_DESCRIPTOR pSD, // SD buffer DWORD cbSD, // size of SD buffer LPDWORD lpcbsdRequired // required size of SD buffer );
If the function succeeds, the return value is NDDE_NO_ERROR.
If the function fails, the return value is an error code, which can be translated into a text error message by calling NDdeGetErrorString. If the pSD parameter was NULL, it returns NDDE_BUF_TOO_SMALL.
Windows NT/2000: Requires Windows NT 3.1 or later.
Header: Declared in Nddeapi.h.
Library: Use Nddeapi.lib.
Unicode: Implemented as Unicode and ANSI versions on Windows NT/2000.
Network Dynamic Data Exchange Overview, Network DDE Functions, SECURITY_INFORMATION, NDdeSetShareSecurity