summaryrefslogtreecommitdiffstats
path: root/loader/devices.h
blob: bc57f68d07cb1bc8e88a87762b261eeefbca8c91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef H_DEVICES
#define H_DEVICES

#include "../isys/isys.h"
#include "modules.h"

int devDeviceMenu(enum driverMajor type, moduleInfoSet modInfo, 
		  moduleList modLoaded, moduleDeps * modDepsPtr, int flags,
		  char ** moduleName);
int devLoadDriverDisk(moduleInfoSet modInfo, moduleList modLoaded,
		     moduleDeps *modDepsPtr, int flags, int cancelNotBack);
int devInitDriverDisk(moduleInfoSet modInfo, moduleList modLoaded, 
		      moduleDeps *modDepsPtr, int flags, char * mntPoint);

void ejectFloppy(void);
char * extractModule(char * location, char * modName);

#endif