12 lines
No EOL
183 B
C++
12 lines
No EOL
183 B
C++
#ifndef DRIVER_H
|
|
#define DRIVER_H
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#include <Windows.h>
|
|
|
|
namespace driver
|
|
{
|
|
BOOL bLoadDriver(const char* driverPath, const char* driverName);
|
|
}
|
|
|
|
#endif |