oleacc: Add a version resource.

This commit is contained in:
Hans Leidekker 2011-09-21 09:01:40 +02:00 committed by Alexandre Julliard
parent 83ef90789f
commit 91c3aa001f
2 changed files with 11 additions and 2 deletions

View file

@ -95,8 +95,8 @@ HRESULT WINAPI DllUnregisterServer(void)
void WINAPI GetOleaccVersionInfo(DWORD* pVersion, DWORD* pBuild)
{
*pVersion = MAKELONG(2,4); /* Windows XP version of oleacc: 4.2.5406.0 */
*pBuild = MAKELONG(0,5406);
*pVersion = MAKELONG(0,7); /* Windows 7 version of oleacc: 7.0.0.0 */
*pBuild = MAKELONG(0,0);
}
UINT WINAPI GetRoleTextW(DWORD role, LPWSTR lpRole, UINT rolemax)

View file

@ -90,3 +90,12 @@ STRINGTABLE
ROLE_SYSTEM_IPADDRESS "IP address"
ROLE_SYSTEM_OUTLINEBUTTON "outline button"
}
#define WINE_FILEDESCRIPTION_STR "Wine OLE Accessibility"
#define WINE_FILENAME_STR "oleacc.dll"
#define WINE_FILEVERSION 7,0,0,0
#define WINE_FILEVERSION_STR "7.0.0.0"
#define WINE_PRODUCTVERSION 6,1,7600,16385
#define WINE_PRODUCTVERSION_STR "6.1.6700.16385"
#include "wine/wine_common_ver.rc"