Platform SDK: Interprocess Communications |
The NDdeSetShareSecurity function sets the security descriptor associated with the DDE share. This is done usually after editing the DACL assigned to the DDE share.
UINT NDdeSetShareSecurity( LPTSTR lpszServer, // server name LPTSTR lpszShareName, // share name SECURITY_INFORMATION si, // information type PSECURITY_DESCRIPTOR pSD // security descriptor );
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.
To modify the SECURITY_DESCRIPTOR associated with a DDE share in the DSDM, the user must have appropriate privilege; the share creator has this privilege.
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, NDdeGetShareSecurity