|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| No
| Win32s
| No
| Import Library
| nddeapi.lib
| Header File
| nddeapi.h
| Unicode
| WinNT
| Platform Notes
| None
|
|
|
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 structure that defines the new DDE share information to be stored in the
DSDM. Currently the DDE share information is modified as a whole, that is, no
partial edits are made. This parameter must not be NULL.
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
NDDESHAREINFO, NDdeShareGetInfo
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
More Online Helps
Win32 Programmer's Reference (win32.hlp)
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|