home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 May / Pcwk5b98.iso / Borland / Cplus45 / BC45 / TSTAPP.PAK / DDECLNT.H < prev    next >
Text File  |  1995-08-29  |  706b  |  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.