1
0
Fork 0
reality-engine/src/vm/device.h

10 lines
238 B
C

#ifndef UNDAR_DEVICE_H
#define UNDAR_DEVICE_H
#include "opcodes.h"
i32 vm_register_device(VM *vm, const char *path, const char *type, void *data, DeviceOps *ops, u32 size);
Device* find_device_by_path(VM *vm, const char *path);
#endif