Commit 13535251 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

Add version info for built-in oleaut32.dll.

parent 2482ef33
*.spec.c
*.spec.glue.s
Makefile
version.res
......@@ -23,6 +23,9 @@ C_SRCS = \
typelib.c \
variant.c
RC_SRCS = \
version.rc
@MAKE_DLL_RULES@
### Dependencies:
......
name oleaut32
type win32
rsrc version.res
import ole32.dll
import user32.dll
......
#define WINE_FILEDESCRIPTION_STR "Wine OLE dll"
#define WINE_FILENAME_STR "oleaut32.dll"
#include "wine/wine_common_ver.rc"
#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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment