1
0
mirror of https://git.code.sf.net/p/zint/code synced 2026-01-21 19:06:05 +00:00

version strings updated to 2.4.2

This commit is contained in:
tgotic
2011-05-04 21:50:02 +02:00
parent 891570299c
commit 6a69a212a0
4 changed files with 12 additions and 11 deletions

View File

@@ -1,5 +1,5 @@
/* Sed: http://msdn.microsoft.com/library/en-us/shellcc/platform/shell/programmersguide/versions.asp */
#if defined (WIN32) && (defined(_USRDLL) || defined(DLL_EXPORT) || defined(PIC))
#if defined (_WIN32) && (defined(_USRDLL) || defined(DLL_EXPORT) || defined(PIC))
#include <windows.h>
#include <shlwapi.h>
@@ -21,11 +21,11 @@ HRESULT DllGetVersion (DLLVERSIONINFO2* pdvi)
pdvi->info1.dwMajorVersion = 2;
pdvi->info1.dwMinorVersion = 4;
pdvi->info1.dwBuildNumber = 1;
pdvi->info1.dwBuildNumber = 2;
pdvi->info1.dwPlatformID = DLLVER_PLATFORM_WINDOWS;
if (sizeof(DLLVERSIONINFO2) == pdvi->info1.cbSize)
pdvi->ullVersion = MAKEDLLVERULL(2, 4, 1, 0);
pdvi->ullVersion = MAKEDLLVERULL(2, 4, 2, 0);
return S_OK;
}
#endif /* WIN32 */
#endif /* _WIN32 */