NetDisk/installdriver.h
Stephen Heumann ff538de39c Add basic infrastructure for an installable GS/OS driver.
Currently, this can install the DIBs from the driver, but no driver calls are implemented.
2018-08-06 20:22:33 -05:00

13 lines
189 B
C

#ifndef INSTALLDRIVER_H
#define INSTALLDRIVER_H
#include <types.h>
/*
* Install our driver.
* Returns 0 if successful, non-zero error code if not.
*/
Word InstallDriver(void);
#endif