2

我正在从 system32 (shell32.dll) 打开一个 DLL,我想接收它的版本。我该怎么做?我开始写它,但只是不知道如何继续:

我还看到有这样的功能: GetFileVersionSize ,有没有办法使用它们?

这是代码,如果有人可以帮助我继续它并提供线索,我真的很喜欢它

谢谢!

#define PATH    "C:\\Users\\rachel\\Desktop\\shell32.dll"

PVERSION dll_getVersion(PCHAR pDllPath)
{
 PVERSION       version             =   NULL;
 HINSTANCE      dllLoad             =   NULL;
 HRSRC          resourceHandle      =   NULL;
 HGLOBAL            loadResourceHandle  =   NULL;
 LPVOID         lockResourceHande   =   NULL;
 DWORD          sizeOfResource      =   0;

 //LPCTSTR  lptstrFilename = NULL;
 //DWORD    dfHandle = 0;
 //DWORD dwLen = 0;
 //LPVOID   lpData = NULL;
 //BOOL test = FALSE;

 //DWORD fileVersionSize = 0;
 //unsigned long u = 0;
 //fileVersionSize = GetFileVersionInfoSize(PATH , &u);

 //test = GetFileVersionInfo(PATH, dfHandle , dwLen ,lpData);



if (NULL == pDllPath)
{
    printf("error #1 : dllPath is invalid \n");
    return version;
}

version = (PVERSION)calloc(1,sizeof(VERSION));
if (NULL == version)
{
    printf("the allocation failed \n");
    return version;
}

//opening the dll using the path */
dllLoad = LoadLibrary(pDllPath);
if (NULL == dllLoad)
{
    printf("failed to load the dll ! \n");
    printf("the last error is : %d\n" , GetLastError());
    free(version);
    version = NULL;
    return version;
}

resourceHandle          =    FindResource(dllLoad ,MAKEINTRESOURCE(16) , RT_VERSION);
if (NULL == resourceHandle)
{
    printf("problem with find resource!!!! \n");
    return NULL;
}
loadResourceHandle      =    LoadResource(dllLoad , resourceHandle);

if (NULL == loadResourceHandle)
{
    printf("problem with load resource function! \n");
    return NULL;
}

lockResourceHande = LockResource(loadResourceHandle);
if (NULL == lockResourceHande)
{
    printf("error in lock resource function \n");
    return NULL;
}

sizeOfResource = SizeofResource(dllLoad, resourceHandle);
4

2 回答 2

2

这里,给你一个例子,希望对你有帮助。调用 GetFileInfoSize,分配一个该大小的缓冲区,然后将您分配的缓冲区传递给 GetFileInfo,然后在 VerQueryValue 中使用您传递给 GetFileInfo 的初始化缓冲区。

于 2012-11-25T15:45:44.127 回答
1

实际上有两种方法可以获取 DLL 的版本。许多系统 DLL 导出一个DllGetVersion()函数。对于不这样做的 DLL,您必须回退到GetFileVersionInfo()相关函数。以下文章向您展示了使用两者的示例:

确定 DLL 或可执行文件的版本号

于 2012-11-25T18:38:53.500 回答