X-Authentication-Warning: delorie.com: mailnull set sender to djgpp-bounces using -f Message-ID: <3C1C2C74.E31A0D62@xtra.co.nz> From: Greg & Steph X-Mailer: Mozilla 4.75 [en]C-XTRA (Win98; U) X-Accept-Language: en MIME-Version: 1.0 Newsgroups: comp.os.msdos.djgpp Subject: GRX243 Help Please Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Lines: 47 Date: Sun, 16 Dec 2001 18:09:08 +1300 NNTP-Posting-Host: 210.55.82.88 X-Complaints-To: newsadmin AT xtra DOT co DOT nz X-Trace: news.xtra.co.nz 1008479313 210.55.82.88 (Sun, 16 Dec 2001 18:08:33 NZDT) NNTP-Posting-Date: Sun, 16 Dec 2001 18:08:33 NZDT Organization: Xtra To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com I've just added GRX, followed all instructions (??) all the 's All the Extra *.h's are in my djgpp\include and libgrx20a in my djgpp\lib. I cut and pasted the "GRX Hello World" straight from the User Manual... #include #include #include int GRXMain() { char *message = "Hello, GRX world"; int x, y; GrTextOption grt; GrSetMode( GR_default_graphics ); grt.txo_font = &GrDefaultFont; grt.txo_fgcolor.v = GrWhite(); grt.txo_bgcolor.v = GrBlack(); grt.txo_direct = GR_TEXT_RIGHT; grt.txo_xalign = GR_ALIGN_CENTER; grt.txo_yalign = GR_ALIGN_CENTER; grt.txo_chrtype = GR_BYTE_TEXT; GrBox( 0,0,GrMaxX(),GrMaxY(),GrWhite() ); GrBox( 4,4,GrMaxX()-4,GrMaxY()-4,GrWhite() ); x = GrMaxX()/2; y = GrMaxY()/2; GrDrawString( message,strlen( message ),x,y,&grt ); GrKeyRead(); return 0; } This Compiles Ok , but wont Make... What am I doing wrong??? Do I need to set the "linker options" please explain in simplest terms as I'm not very familiar with DOS let-alone RHIDE, DJGPP & GRX. Thank You Greg