能力值:
( LV15,RANK:670 )
|
-
-
2 楼
const wchar_t *pszPath = L"\Device\HarddiskVolume2\Windows\System32\SearchFilterHost.exe";
const wchar_t *pszFileName = wcsrchr(pszPath, '\\');
|
能力值:
( LV2,RANK:10 )
|
-
-
3 楼
这是驱动层的吗?驱动里面有wchar_t吗?
|
能力值:
( LV15,RANK:670 )
|
-
-
4 楼
驱动里没有 wchar_t,它是 c++ 的类型。
|
能力值:
( LV2,RANK:10 )
|
-
-
5 楼
那驱动里面如何做来着,我在驱动里面用WCHAR定义数组可以,但是定义字符和指针类型报错。。。
|
能力值:
( LV2,RANK:10 )
|
-
-
6 楼
const WCHAR *pszPath = L"\\Device\\HarddiskVolume2\\Windows\\System32\\SearchFilterHost.exe";
const WCHAR *pszFileName = wcsrchr(pszPath, '\\');
pszFileName = pszFileName + 1; //略过 "\\"
DbgPrint("%S \n",pszFileName);
|
|
|