home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 May / Pcwk5b98.iso / Borland / Cplus45 / BC45 / TSTAPP.PAK / DDESRVR.H < prev    next >
Text File  |  1995-08-29  |  716b  |  21 lines

  1. // Borland C++ - (C) Copyright 1991, 1992 by Borland International
  2.  
  3. // ddesrvr.h
  4.  
  5. # define WMU_DDE_CLOSED WM_USER + 100
  6.  
  7. // Routines in ddesrvr.c
  8. extern HWND             DDEServerInit(HWND hParentWnd, HWND hClientWnd,
  9.                                      LONG lParam, char *szApp, char *szTopic);
  10. extern int              DDEServerClose(HWND hChannel);
  11. extern LRESULT CALLBACK _export DDEServerWndProc(HWND hWnd, UINT message,
  12.                                         WPARAM wParam, LPARAM lParam);
  13.  
  14. // Routines supplied by application to do actual work.
  15. extern int              DDEExecuteCommand(LPSTR lpCommand);
  16. extern int              DDEData(char *szItem, HANDLE *hData);
  17.  
  18. // end ddesrvr.h
  19.  
  20. 
  21.