mirror of
https://github.com/donnaskiez/ac.git
synced 2024-11-21 22:24:08 +01:00
LOlz
This commit is contained in:
parent
db66a9159d
commit
89e69f2cf8
1 changed files with 2 additions and 2 deletions
|
@ -8,10 +8,10 @@ kernelmode::KManager::KManager( LPCWSTR DriverName, std::shared_ptr<global::Thre
|
|||
|
||||
void kernelmode::KManager::RunNmiCallbacks()
|
||||
{
|
||||
this->thread_pool->QueueJob( [ this ]() {this->RunNmiCallbacks(); } );
|
||||
this->thread_pool->QueueJob( [ this ]() { this->driver_interface->RunNmiCallbacks(); } );
|
||||
}
|
||||
|
||||
void kernelmode::KManager::VerifySystemModules()
|
||||
{
|
||||
this->thread_pool->QueueJob( [ this ]() {this->VerifySystemModules(); } );
|
||||
this->thread_pool->QueueJob( [ this ]() { this->driver_interface->VerifySystemModules(); } );
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue