about summary refs log blame commit diff stats
path: root/tools/iso/kernel.soso/null.c
blob: aef2861cc961d2e3ded0b812e1a9ff8a4bdd7042 (plain) (tree)
1
2
3
4
5
6
7
8






                                                
                       








                                               
                                                 

                
#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;
}