|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| Yes
| Import Library
| -
| Header File
| dde.h
| Unicode
| No
| Platform Notes
| None
|
|
|
DDEADVISE
The DDEADVISE structure contains flags that specify how a DDE server application should
send data to a client application during an advise loop. A client passes the
handle of a DDEADVISE structure to a server as part of a WM_DDE_ADVISE message. This structure
supersedes the DDELN structure.
typedef struct { // ddeadv
unsigned short reserved:14,
fDeferUpd:1,
fAckReq:1;
short cfFormat;
} DDEADVISE;
Members
fDeferUpd
Indicates whether the server should defer sending updated data to the client.
If this value is nonzero, the server should send a WM_DDE_DATA message with a NULL data handle whenever the data item changes. In response,
the client can post a WM_DDE_REQUEST message to the server to get a handle of the updated data.
fAckReq
Indicates whether the server should set the fAckReq flag in the WM_DDE_DATA messages it posts to the client. If this value is
nonzero, the server should set the fAckReq bit.
cfFormat
Specifies the client application's preferred data format. The format must be a
standard or registered clipboard format. The following standard clipboard
formats can be used:
CF_BITMAP
CF_DIB
CF_DIF
CF_ENHMETAFILE
CF_METAFILEPICT
CF_OEMTEXT
CF_PALETTE
CF_PENDATA
CF_RIFF
CF_SYLK
CF_TEXT
CF_TIFF
CF_WAVE
CF_UNICODETEXT
See Also
WM_DDE_ADVISE, WM_DDE_DATA, WM_DDE_UNADVISE
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
TMS Scripter Studio Pro components for Delphi/C++Builder
More Online Helps
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
|