Add version info for built-in oleaut32.dll.

oldstable
Dmitry Timoshkov 2001-03-19 19:17:27 +00:00 committed by Alexandre Julliard
parent 2482ef3339
commit 13535251bf
5 changed files with 17 additions and 2 deletions

View File

@ -1,3 +1,4 @@
*.spec.c
*.spec.glue.s
Makefile
version.res

View File

@ -23,6 +23,9 @@ C_SRCS = \
typelib.c \
variant.c
RC_SRCS = \
version.rc
@MAKE_DLL_RULES@
### Dependencies:

View File

@ -1,5 +1,6 @@
name oleaut32
type win32
rsrc version.res
import ole32.dll
import user32.dll

View File

@ -0,0 +1,4 @@
#define WINE_FILEDESCRIPTION_STR "Wine OLE dll"
#define WINE_FILENAME_STR "oleaut32.dll"
#include "wine/wine_common_ver.rc"

View File

@ -1,11 +1,17 @@
#include "winver.h"
/*
Assign WINE_FILEVERSION and WINE_FILEVERSION_STR high enough number
to make sure that programs, relying on the version numbers, will
never complain.
*/
#ifndef WINE_FILEVERSION
#define WINE_FILEVERSION 1,0,0,0
#define WINE_FILEVERSION 10,0,0,0
#endif
#ifndef WINE_FILEVERSION_STR
#define WINE_FILEVERSION_STR "1.0"
#define WINE_FILEVERSION_STR "10.0"
#endif
#ifndef WINE_FILEDESCRIPTION_STR