Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
// Prototypes for DDE utiltity functions-- most with AW variants.
//
extern HDDEDATA GetTopicListA( HCONV hConv, BOOL fAllTopicsReq);
extern HDDEDATA GetTopicListW( HCONV hConv, BOOL fAllTopicsReq);
extern HDDEDATA GetFormatListA( HCONV hConv, HSZ hszTopic);
extern HDDEDATA GetFormatListW( HCONV hConv, HSZ hszTopic);
#ifdef UNICODE
#define GetTopicList GetTopicListA
#define GetFormatList GetFormatListA
#else
#define GetTopicList GetTopicListW
#define GetFormatList GetFormatListW
#endif
|