I have a problem with the driver. In win 10 if I add a DbgPrint on driver example i have a BSOD. Also, I want to load from user address the driver but I'm not sure if I'm doing it right.
I've tried:
h = CreateFile(TEXT("\\.\bsideshide"), GENERIC_READ | GENERIC_WRITE,
FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING, 0, NULL);
But it is not working.
I have a problem with the driver. In win 10 if I add a DbgPrint on driver example i have a BSOD. Also, I want to load from user address the driver but I'm not sure if I'm doing it right.
I've tried:
h = CreateFile(TEXT("\\.\bsideshide"), GENERIC_READ | GENERIC_WRITE,
FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING, 0, NULL);
But it is not working.