mirror of
https://github.com/sheumann/NetDisk.git
synced 2024-11-23 22:37:02 +00:00
ff538de39c
Currently, this can install the DIBs from the driver, but no driver calls are implemented.
13 lines
189 B
C
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
|