1 #ifndef _INCLUDE_OSD_H
2 #define _INCLUDE_OSD_H
3 
4 /*
5  * Generic include part
6  */
7 #include <go32.h>
8 #include <dpmi.h>
9 #include <sys\farptr.h>
10 #include "cleantyp.h"
11 
12 /*
13  * Mscdex include part
14  */
15 #include <string.h>
16 #include <sys\segments.h>
17 
18 /*
19  * Aspi include part
20  */
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <string.h>
24 #include <fcntl.h>
25 #include <sys/stat.h>
26 #include "aspi.h"
27 #include "aspi_int.h"
28 #include "scsidefs.h"
29 
30 typedef enum {
31         mscdex_driver,
32         aspi_driver } osd_cd_driver_type;
33 
34 extern osd_cd_driver_type osd_cd_driver;
35 
36 #endif
37