blob: aef2861cc961d2e3ded0b812e1a9ff8a4bdd7042 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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;
}
|