我写了一个自定义驱动程序。
下面是用C语言与驱动程序通信的源代码:

#include <windows.h>
#include <stdio.h>

/*********************************************************
* Main Function Entry
*
*********************************************************/
int _cdecl main(void)
{
HANDLE hFile;
DWORD dwReturn;

hFile = CreateFile("\\\\.\\Example", GENERIC_READ | GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, NULL);

if(hFile)
{
WriteFile(hFile, "Hello from user mode!", sizeof("Hello from user mode!"), &dwReturn, NULL);
CloseHandle(hFile);
}

return 0;
}

我希望能在.NET中优先在VB.NET中这样做。
有人知道如何转换吗?

最佳答案

最简单的方法是使用P/Invoke来OpenFileWriteFileCloseHandle

09-07 02:07