Windows NT 4.0 source code leak
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.
 
 
 
 
 
 

32 lines
582 B

// 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