home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Programmierung / SOURCE.mdf / programm / windows / c / xlisp21w / sources / xserver.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-02-28  |  517 b   |  20 lines

  1. /***** xserver.h
  2.     Header file for the XServer.DLL exports
  3.         Written by Gabor Paller
  4.                     **********/
  5.  
  6. #define    XL_REQ    0xE000
  7. #define    XL_TRIG    0xE001
  8.  
  9. int FAR PASCAL        XDStartServer( HWND );
  10. int FAR PASCAL        XDTerminateServer();
  11. int FAR PASCAL        XDSendRequest( HWND , LPSTR );
  12. LPSTR FAR PASCAL    XDGetReply( HWND );
  13. int FAR PASCAL        XDDeleteReply( HWND );
  14. int FAR PASCAL        XDSendReply( LPSTR );
  15. LPSTR FAR PASCAL    XDGetRequest();
  16. void FAR PASCAL        XDDebug();
  17. void FAR PASCAL        xstrncpy( LPSTR , LPSTR , int );
  18.  
  19.  
  20.