mirror of
https://github.com/donnaskiez/ac.git
synced 2024-11-21 22:24:08 +01:00
23 lines
278 B
C
23 lines
278 B
C
|
#ifndef DRIVER_H
|
||
|
#define DRIVER_H
|
||
|
|
||
|
#include <Windows.h>
|
||
|
|
||
|
#include "../threadpool.h"
|
||
|
|
||
|
namespace kernelmode
|
||
|
{
|
||
|
class Driver
|
||
|
{
|
||
|
HANDLE driver_handle;
|
||
|
LPCWSTR driver_name;
|
||
|
public:
|
||
|
|
||
|
std::shared_ptr<global::ThreadPool> thread_pool;
|
||
|
|
||
|
Driver(LPCWSTR DriverName);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|