Add version info for built-in oleaut32.dll.
This commit is contained in:
parent
2482ef3339
commit
13535251bf
|
@ -1,3 +1,4 @@
|
||||||
*.spec.c
|
*.spec.c
|
||||||
*.spec.glue.s
|
*.spec.glue.s
|
||||||
Makefile
|
Makefile
|
||||||
|
version.res
|
||||||
|
|
|
@ -23,6 +23,9 @@ C_SRCS = \
|
||||||
typelib.c \
|
typelib.c \
|
||||||
variant.c
|
variant.c
|
||||||
|
|
||||||
|
RC_SRCS = \
|
||||||
|
version.rc
|
||||||
|
|
||||||
@MAKE_DLL_RULES@
|
@MAKE_DLL_RULES@
|
||||||
|
|
||||||
### Dependencies:
|
### Dependencies:
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
name oleaut32
|
name oleaut32
|
||||||
type win32
|
type win32
|
||||||
|
rsrc version.res
|
||||||
|
|
||||||
import ole32.dll
|
import ole32.dll
|
||||||
import user32.dll
|
import user32.dll
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
#define WINE_FILEDESCRIPTION_STR "Wine OLE dll"
|
||||||
|
#define WINE_FILENAME_STR "oleaut32.dll"
|
||||||
|
|
||||||
|
#include "wine/wine_common_ver.rc"
|
|
@ -1,11 +1,17 @@
|
||||||
#include "winver.h"
|
#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
|
#ifndef WINE_FILEVERSION
|
||||||
#define WINE_FILEVERSION 1,0,0,0
|
#define WINE_FILEVERSION 10,0,0,0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef WINE_FILEVERSION_STR
|
#ifndef WINE_FILEVERSION_STR
|
||||||
#define WINE_FILEVERSION_STR "1.0"
|
#define WINE_FILEVERSION_STR "10.0"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef WINE_FILEDESCRIPTION_STR
|
#ifndef WINE_FILEDESCRIPTION_STR
|
||||||
|
|
Loading…
Reference in New Issue