All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m19s
11 lines
257 B
C
11 lines
257 B
C
#ifndef _KERNEL_DEVICE_PS2_KB_H
|
|
#define _KERNEL_DEVICE_PS2_KB_H
|
|
|
|
#include <proc/proc.h>
|
|
|
|
int ps2kb_read_key (struct proc* proc, void* a1, void* a2, void* a3, void* a4);
|
|
bool ps2kb_init (void* arg);
|
|
void ps2kb_fini (void);
|
|
|
|
#endif // _KERNEL_DEVICE_PS2_KB_H
|