Files
mop3/kernel/device/ps2_kb.h
kamkow1 81704d7df8
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m8s
CE Implement line editing
2026-03-04 02:02:05 +01:00

19 lines
461 B
C

#ifndef _KERNEL_DEVICE_PS2_KB_H
#define _KERNEL_DEVICE_PS2_KB_H
#include <libk/list.h>
#include <libk/std.h>
#include <proc/proc.h>
#include <proc/reschedule.h>
struct device;
int ps2kb_read_key (struct device* device, struct proc* proc, struct reschedule_ctx* rctx, 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