Add special event pipes, rework ps2kb process

This commit is contained in:
2025-09-08 22:12:50 +02:00
parent 94dd38d010
commit ab224eda8e
9 changed files with 101 additions and 13 deletions

View File

@ -5,12 +5,15 @@
#include <stddef.h>
#define IPCPIPE_SELFPID (-1)
#define IPCPIPE_OUT (0)
#define IPCPIPE_IN (1)
enum {
IPCPIPE_MAKE = 0,
IPCPIPE_READ = 1,
IPCPIPE_WRITE = 2,
IPCPIPE_REG_EVT_PIPE = 3,
};
#endif // SHARE_SYSDEFS_IPCPIPE_H_