Date: Mon, 27 Jan 1997 08:24:47 +0200 (IST) From: Eli Zaretskii To: bas AT merlin DOT ebicom DOT net cc: djgpp AT delorie DOT com Subject: Re: cd question In-Reply-To: <2.2.32.19970126160216.006e5a78@merlin.ebicom.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII On Sun, 26 Jan 1997 bas AT merlin DOT ebicom DOT net wrote: > Ok, I compiled a cdplayer from freebsd without a hitch but its looking for > the cd in /dev/somthing or another, Whats the dos name of the cd player, thanks DOS doesn't have a /dev/ directory where the raw devices can be accessed. You will have to change the code that accesses that direcory on Unix. Most probably, direct IOCTL calls is the way to do that on DOS (if the code you are porting reads/writes the CD in raw mode), or access the drive letter (such as F:) where the CD is mapped. I suggest you post the fragment that accesses /dev/something and let people advise.