我想加载在默认 Windows 打印机驱动程序资源文件中使用的 unired.dll。我可以为 Windows Vista x86 加载 unires.dll。
它位于 C:\Windows\System32\spool\drivers\w32x86\3
但现在我使用的是 Windows 7 Pro x64。
因此无法加载位于 C:\Windows\System32\spool\drivers\x64\3 中的同名 unires.dll。
通过以下代码,GetLastError() 返回 193
是否可以?还是不可能?我使用 Visual Studio 2005 Pro。尝试构建 x64 和 x86,但它们都失败了。
TCHAR libName[MAX_PATH];
wsprintf(libName , _T("unires.dll"));
HINSTANCE hLibraryInstance = ::LoadLibrary(libName);
DWORD ErrorId=::GetLastError();
std::wofstream out;
out.open(_T("unires.txt"));
for(UINT resKey=0;resKey<100000;resKey++)
{
TCHAR * resBuf=new TCHAR[CHAR_MAX];
int BufferMaxSize=CHAR_MAX;
int Result=::LoadString(hLibraryInstance, resKey, resBuf, BufferMaxSize);
wstring resStr=resBuf;
if(!resStr.empty())
{
out<<resKey;
out<<" ";
out<<resStr.c_str();
out<<endl;
}
if(resBuf!=NULL)
{
delete [] resBuf;
}
}
out.close();
请帮我。最好的祝福!!