home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c083 / 20.ddi / TSTAPP.PAK / DDECLNT.H < prev    next >
Encoding:
C/C++ Source or Header  |  1993-12-02  |  706 b   |  20 lines

  1. // Borland C++ - (C) Copyright 1991, 1992 by Borland International
  2.  
  3. // ddeclnt.h
  4.  
  5. # define WMU_DDE_CLOSED WM_USER + 100
  6.  
  7. extern HWND             DDEClientOpen(HWND hParentWnd, char *szApp,
  8.                                       char *szTopic);
  9. extern void             DDEClientClose(HWND hChannel);
  10. extern int              DDEExecute(HWND hChannel, LPSTR lpszCommand, int nWait);
  11. extern HANDLE           DDERead(HWND hChannel, char *szItem, int nWait);
  12. extern int              DDEWait(HWND hChannel, int nWait);
  13. extern void             DDESleep(int nWait);
  14. extern LRESULT CALLBACK _export DDEClientWndProc(HWND hWnd, UINT message,
  15.                     WPARAM wParam, LPARAM lParam);
  16.  
  17. // end ddeclnt.h
  18.  
  19. 
  20.