diff options
Diffstat (limited to 'tools/iso/kernel.soso/null.c')
-rw-r--r-- | tools/iso/kernel.soso/null.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tools/iso/kernel.soso/null.c b/tools/iso/kernel.soso/null.c new file mode 100644 index 00000000..aef2861c --- /dev/null +++ b/tools/iso/kernel.soso/null.c @@ -0,0 +1,20 @@ +#include "null.h" +#include "devfs.h" +#include "device.h" +#include "common.h" + +static BOOL null_open(File *file, uint32 flags); + +void initializeNull() { + Device device; + memset((uint8*)&device, 0, sizeof(Device)); + strcpy(device.name, "null"); + device.deviceType = FT_CharacterDevice; + device.open = null_open; + + registerDevice(&device); +} + +static BOOL null_open(File *file, uint32 flags) { + return TRUE; +} |