summaryrefslogtreecommitdiffstats
path: root/loader/devices.h
blob: 26de0d1c23ff1fe599505cb268ca9c20e9fb5b6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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,
		      int removeable);

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

#endif