I have a driver I've written, and I created a symbolic name to it. The symbolic name is ...
L"\\DosDevices\\somename"
... and when I try to access the device object using CreateFile from usermode, I always get error code 3 (Path not found).
I tried using CreateFile with the following paths ...
L"\\\\.\\somename"
L"\\Device\\somename"
... and it doesnt work: I always get error code 3
Does someone know why?