vote up 6 vote down star
2

I need to get the version info of a dll I created in VS2008 C++. How do I get it?

Thanks,

Adam

flag

4 Answers

vote up 4 vote down

Thanks for the answers.

This worked for me:

WCHAR fileName[_MAX_PATH];
DWORD size = GetModuleFileName(g_dllHandle, fileName, _MAX_PATH);
fileName[size] = NULL;
DWORD handle = 0;
size = GetFileVersionInfoSize(fileName, &handle);
BYTE* versionInfo = new BYTE[size];
if (!GetFileVersionInfo(fileName, handle, size, versionInfo))
{
    delete[] versionInfo;
    return;
}
// we have version information
UINT    			len = 0;
VS_FIXEDFILEINFO*   vsfi = NULL;
VerQueryValue(versionInfo, L"\\", (void**)&vsfi, &len);
aVersion[0] = HIWORD(vsfi->dwFileVersionMS);
aVersion[1] = LOWORD(vsfi->dwFileVersionMS);
aVersion[2] = HIWORD(vsfi->dwFileVersionLS);
aVersion[3] = LOWORD(vsfi->dwFileVersionLS);
delete[] versionInfo;
link|flag
vote up 3 vote down

Looks like you need to access the VS_VERSION_INFO resource; http://www.microsoft.com/msj/0498/c0498.aspx

link|flag
You phrased it like the ms paperclip :) +1 – Ólafur Waage Jan 7 at 14:26
Haha, I should change my icon.. – Henrik Hartz Jan 14 at 16:40
vote up 7 vote down

If you want programmatic access, see Version Information in MSDN for the APIs and data structures you need.

link|flag
vote up 0 vote down

It should be there in the properties (version tab) when you open it in windows explorer

link|flag
He likely wants to do this programmatically... – Graeme Perrow Jan 7 at 14:38
yes, wasn't clear from the q really – frankodwyer Jan 7 at 15:38

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.