FDOSTUI
FreeDOS Text User Interface
hw.h
Go to the documentation of this file.
1 /*
2  HW.H
3 
4  License CC0 PUBLIC DOMAIN
5 
6  To the extent possible under law, Mark J. Olesen has waived all copyright
7  and related or neighboring rights to FDOSTUI Library. This work is published
8  from: United States.
9 */
10 #ifndef __hw_h__
11 
12 #if defined(__DOS__) || defined(__NT__) || defined(__DJGPP__)
13 
14 #ifdef __cplusplus
15 extern "C" {
16 #endif
17 
18 #define HW_DRIVE_MAX 26
19 
20 extern unsigned char _hw_drives[HW_DRIVE_MAX];
21 
22 extern void
24 
25 #ifdef __cplusplus
26 }
27 #endif
28 
29 #endif /* #if defined(__DOS__) || defined(__NT__) */
30 
31 #define __hw_h__
32 #endif
unsigned char _hw_drives[HW_DRIVE_MAX]
list of available hard drives
Definition: djgpp/hw.c:17
void hw_detect_drives()
Definition: djgpp/hw.c:20