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.

32 lines
614 B

  1. // Prototypes for DDE utiltity functions-- most with AW variants.
  2. //
  3. extern HDDEDATA GetTopicListA(
  4. HCONV hConv,
  5. BOOL fAllTopicsReq);
  6. extern HDDEDATA GetTopicListW(
  7. HCONV hConv,
  8. BOOL fAllTopicsReq);
  9. extern HDDEDATA GetFormatListA(
  10. HCONV hConv,
  11. HSZ hszTopic);
  12. extern HDDEDATA GetFormatListW(
  13. HCONV hConv,
  14. HSZ hszTopic);
  15. #ifdef UNICODE
  16. #define GetTopicList GetTopicListA
  17. #define GetFormatList GetFormatListA
  18. #else
  19. #define GetTopicList GetTopicListW
  20. #define GetFormatList GetFormatListW
  21. #endif