Files
mop3/kernel/device/ps2_kb.h
kamkow1 9aea870159
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m24s
VFS mountpoint backing device system
2026-02-16 23:48:45 +01:00

15 lines
388 B
C

#ifndef _KERNEL_DEVICE_PS2_KB_H
#define _KERNEL_DEVICE_PS2_KB_H
#include <libk/std.h>
struct device;
struct device_op_ctx;
int ps2kb_read_key (struct device* device, struct device_op_ctx* op_ctx, void* a1, void* a2,
void* a3, void* a4);
bool ps2kb_init (struct device* device, void* arg);
void ps2kb_fini (struct device* device);
#endif // _KERNEL_DEVICE_PS2_KB_H