home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c081_7 / 2.ddi / WEXAMPLE.ZIP / DDECLNT.H < prev    next >
Encoding:
C/C++ Source or Header  |  1991-02-13  |  712 b   |  19 lines

  1. // Borland C++ - (C) Copyright 1991 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 LONG FAR PASCAL DDEClientWndProc(HWND hWnd, WORD message,
  15.                                         WORD wParam, LONG lParam);
  16.  
  17. // end ddeclnt.h
  18.  
  19.