Update Fex header

This commit is contained in:
Alex 2023-03-23 20:46:28 +02:00
parent bff3cb04a0
commit 958e4c792e
Signed by untrusted user who does not match committer: enderice2
GPG Key ID: EACC3AD603BAB4DD

View File

@ -60,6 +60,7 @@ struct Fex
} __attribute__((packed)); } __attribute__((packed));
union KernelCallback; union KernelCallback;
union CPURegisters;
struct FexExtended struct FexExtended
{ {
@ -75,6 +76,7 @@ struct FexExtended
enum FexDriverInputTypes TypeFlags : 4; enum FexDriverInputTypes TypeFlags : 4;
bool OverrideOnConflict : 1; bool OverrideOnConflict : 1;
int (*Callback)(union KernelCallback *); int (*Callback)(union KernelCallback *);
int (*InterruptCallback)(union CPURegisters *);
struct DriverBind struct DriverBind
{ {