NDdeShareSetInfo
The NDdeShareSetInfo
function is called to modify DDE share information stored in the NetDDE DSDM.
This is usually done after editing.
UINT NDdeShareSetInfo(
LPTSTR lpszServer, |
// server to execute
on |
LPTSTR lpszShareName, |
// name of share |
UINT nLevel, |
// information
level must be 2 |
LPBYTE lpBuffer, |
// address of
NDDESHAREINFO |
DWORD cBufSize, |
// size of buffer |
WORD sParmNum |
// parameter index |
); |
|
Parameters
lpszServer
Address of
the server name on which the DSDM will be modified.
lpszShareName
Address of
the share name whose information is to be modified in the DSDM. This parameter
must not be NULL.
nLevel
Must be 2.
lpBuffer
Address of
the NDDESHAREINFO
cBufSize
Size of the
DDE share information addressed by lpBuffer.
sParmNum
Parameter
index being modified. The current implementation does not support partial
modification and, hence, this value must be 0.
Return Values
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
See Also