X-Authentication-Warning: delorie.com: mailnull set sender to djgpp-bounces using -f From: Andrew Cottrell Newsgroups: comp.os.msdos.djgpp Subject: Re: allegro errors Date: Wed, 26 Dec 2001 10:27:14 +1100 Organization: The Internet Group (Sydney) Lines: 27 Message-ID: <1m2i2u0a05i8v0vkeairuf0umrj71t01vm@4ax.com> References: NNTP-Posting-Host: p483-apx1.syd.ihug.com.au Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: bugstomper.ihug.com.au 1009322828 27375 203.173.141.229 (25 Dec 2001 23:27:08 GMT) X-Newsreader: Forte Agent 1.8/32.548 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Mathew, This newsgroup is for the DJGPP compiler, not VC++. I suggest that you join the Allegro mailing list(s) and send this to them. You can join the list at http://alleg.sourceforge.net and follow the mailing list link on the left. Andrew On Mon, 24 Dec 2001 16:20:04 -0000, "matthew.green5" wrote: >I have just started to attempt to program using the allegro libraries and >visual c++ 4.0. Here is the program: > >#include > >int main() >{ > allegro_init(); > install_keyboard(); > set_gfx_mode(GFX_VGA,320,200,0,0); > textout_centre(screen,font,"Ready. Beep.",160,100,255); > readkey(); > return 0; >} >