Added IOCB function

This commit is contained in:
Alex
2022-11-02 04:13:43 +02:00
parent 7d658a99e6
commit 2650202bc5
2 changed files with 13 additions and 0 deletions

View File

@ -57,6 +57,8 @@ namespace Driver
DriverCode CallDriverEntryPoint(void *fex);
public:
Vector<DriverFile *> GetDrivers() { return Drivers; }
int IOCB(unsigned long DUID, /* KernelCallback */ void *KCB);
DriverCode LoadDriver(uint64_t DriverAddress, uint64_t Size);
DriverCode StartDrivers();
Driver();