home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / sys / amiga / programmer / 1215 < prev    next >
Encoding:
Text File  |  1996-08-05  |  1.4 KB  |  43 lines

  1. Path: Norway.EU.net!usenet
  2. From: terjepe@login.eunet.no (Terje Pedersen)
  3. Newsgroups: comp.sys.amiga.programmer
  4. Subject: Re: X11 conversion
  5. Date: 16 Jan 1996 20:17:34 GMT
  6. Organization: EUnet Norway
  7. Message-ID: <1105.6589T1225T2074@login.eunet.no>
  8. References: <DL73vu.ArA@eskimo.com>
  9. NNTP-Posting-Host: pc2.sandvika-pm2-1.eunet.no
  10. X-Newsreader: THOR 2.22 (Amiga;TCP/IP)
  11.  
  12. >Anyone here know of any good sources of info on how to do ports of X11 
  13. >apps to AmigaOS apps?  I am looking for anything - books, www pages, 
  14. >source code, ect...
  15.  
  16. Well, I used the x11 manual pages as a source of information on what all X11 functions
  17. does, like:
  18.  
  19. NAME
  20.      XOpenDisplay - connect a client program to an X server.
  21.  
  22. Synopsis
  23.      Display *XOpenDisplay(display_name)
  24.          char *display_name;
  25.  
  26. Arguments
  27.      display_name
  28.                Specifies the display name, which determines the  server  to
  29.                connect  to  and  the communications domain to be used.  See
  30.                Description below.
  31.  
  32. Description
  33.      The  XOpenDisplay()  routine  connects  the  client  to   the   server
  34.      controlling  the  hardware display through TCP or DECnet communication
  35.  
  36. And then it is just to figure out how to provide the same functionality as
  37. an X11 server does..I guess it could take a bit of time, but sooner or later
  38. you'll end up with something useful..Have a look at my homepage for a closer
  39. look on some of the X11 programs I have ported: http://login.eunet.no/~terjepe
  40.  
  41. TP
  42.  
  43.