Add version resource to dplayx.dll, versioned to DirectX 7.0.
This commit is contained in:
parent
ce4e097d4c
commit
0a49df16ed
|
@ -1,3 +1,4 @@
|
||||||
*.spec.c
|
*.spec.c
|
||||||
*.spec.glue.s
|
*.spec.glue.s
|
||||||
Makefile
|
Makefile
|
||||||
|
version.res
|
||||||
|
|
|
@ -19,6 +19,9 @@ C_SRCS = \
|
||||||
lobbysp.c \
|
lobbysp.c \
|
||||||
name_server.c
|
name_server.c
|
||||||
|
|
||||||
|
RC_SRCS = \
|
||||||
|
version.rc
|
||||||
|
|
||||||
@MAKE_DLL_RULES@
|
@MAKE_DLL_RULES@
|
||||||
|
|
||||||
### Dependencies:
|
### Dependencies:
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
name dplayx
|
name dplayx
|
||||||
type win32
|
type win32
|
||||||
init DPLAYX_LibMain
|
init DPLAYX_LibMain
|
||||||
|
rsrc version.res
|
||||||
|
|
||||||
import winmm.dll
|
import winmm.dll
|
||||||
import ole32.dll
|
import ole32.dll
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
#define WINE_FILEDESCRIPTION_STR "Wine DirectPlay"
|
||||||
|
#define WINE_FILENAME_STR "dplayx.dll"
|
||||||
|
#define WINE_PRODUCTVERSION 4,7,0,0
|
||||||
|
#define WINE_PRODUCTVERSION_STR "4.7"
|
||||||
|
#define WINE_PRODUCTNAME_STR "DirectX"
|
||||||
|
|
||||||
|
#include "wine/wine_common_ver.rc"
|
Loading…
Reference in New Issue