mirror of
https://github.com/sheumann/NetDisk.git
synced 2024-11-23 22:37:02 +00:00
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
|