home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / bc45 / ddemlwin.pak / DDESRVR.H < prev    next >
C/C++ Source or Header  |  1997-07-23  |  888b  |  37 lines

  1. /* Borland C++ - (C) Copyright 1992 by Borland International               */
  2.  
  3. /*
  4.          External References
  5. */
  6.  
  7. extern HANDLE      hInst;
  8. extern HWND        hWnd;
  9.  
  10. /*
  11.          Resource Defines
  12. */
  13.  
  14. #define ID_DDECLIENT                   100
  15. #define ID_DDESERVER                   101
  16.  
  17. /*
  18.          Menu Selection Defines
  19. */
  20.  
  21. #define IDM_EXIT                       100
  22. #define IDM_SHOW_CONNECTIONS           101
  23. #define IDM_ABOUT                      103
  24.  
  25. /*
  26.          Forward References
  27. */
  28.  
  29. LRESULT CALLBACK MainWndProc ( HWND, UINT, WPARAM, LPARAM );
  30. BOOL FAR PASCAL InitApplication ( HANDLE );
  31. BOOL InitInstance ( HANDLE hInstance, int nCmdShow );
  32. BOOL CALLBACK About ( HWND, UINT, WPARAM, LPARAM );
  33. HDDEDATA EXPENTRY DDECallback ( WORD, WORD, HCONV, HSZ, HSZ, HDDEDATA, DWORD,
  34.                                 DWORD );
  35. void HandleOutput ( char * );
  36.  
  37.