Files
mop3/kernel/device/ps2_kb.h
kamkow1 cd5604da43
All checks were successful
Build documentation / build-and-deploy (push) Successful in 3m35s
Use macro wrappers for device op prototypes
2026-03-15 14:27:54 +01:00

19 lines
351 B
C

#ifndef _KERNEL_DEVICE_PS2_KB_H
#define _KERNEL_DEVICE_PS2_KB_H
#include <device/def_device_op.h>
#include <libk/list.h>
#include <libk/std.h>
#include <proc/proc.h>
#include <proc/reschedule.h>
struct device;
DEFINE_DEVICE_OP (ps2kb_read_key);
DEFINE_DEVICE_INIT (ps2kb_init);
DEFINE_DEVICE_FINI (ps2kb_fini);
#endif // _KERNEL_DEVICE_PS2_KB_H