delorie.com/archives/browse.cgi   search  
Mail Archives: cygwin/1997/10/30/14:14:04

From: dbe AT wgn DOT net ($Bill Luebkert)
Subject: Re: Detecting CD-ROM drive
30 Oct 1997 14:14:04 -0800 :
Message-ID: <3458FE89.8AE4B1D7.cygnus.gnu-win32@wgn.net>
References: <199710300338 DOT WAA00907 AT woodmore DOT gsfc DOT nasa DOT gov>
Mime-Version: 1.0
To: Arlindo da Silva <arlindo AT niteroi DOT gsfc DOT nasa DOT gov>
Cc: gnu-win32 AT cygnus DOT com

Arlindo da Silva wrote:
> 
> Does anybody know how to determine which drive (d:, e:, ...) is a CDROM?
> Is there any native function for this? Thanks.

Have you tried something like:

#include <stdio.h>
#include <winbase.h>
#include <mntent.h>

main () {
        int ii;

for (ii = 0; ii < 26; ii++) {

                char tmp[32];
                int type;

        (void)sprintf (tmp, "%c:\\", ii + 'A');
        type = GetDriveType (tmp);
        if (type == DRIVE_CDROM) {
                (void)printf ("%s\n", tmp);
        }
}

}

-- 
  ,-/-  __      _  _         $Bill Luebkert
 (_/   /  )    // //       DBE Collectibles
  / ) /--<  o // //      http://www.wgn.net/~dbe/
-/-' /___/_<_</_</_    Email: dbe AT wgn DOT net
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request AT cygnus DOT com" with one line of text: "help".

- Raw text -


  webmaster     delorie software   privacy  
  Copyright © 2019   by DJ Delorie     Updated Jul 2019