mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
added file version resource to riched32 and changed makefile to automatically build the riched32.dll
svn path=/trunk/; revision=6036
This commit is contained in:
parent
3a5cac081a
commit
5e5352278f
3 changed files with 40 additions and 4 deletions
|
@ -35,9 +35,9 @@ LIB_STATIC = string rosrtl epsapi zlib
|
|||
|
||||
# User mode libraries
|
||||
# advapi32 cards crtdll fmifs gdi32 kernel32 libpcap packet msafd msvcrt ntdll
|
||||
# epsapi psapi rpcrt4 secur32 user32 version ws2help ws2_32 wsock32 wshirda
|
||||
# epsapi psapi richedit rpcrt4 secur32 user32 version ws2help ws2_32 wsock32 wshirda
|
||||
DLLS = advapi32 cards crtdll fmifs freetype gdi32 kernel32 packet lzexpand msafd \
|
||||
msvcrt ntdll psapi secur32 syssetup twain user32 version winedbgc \
|
||||
msvcrt ntdll psapi richedit secur32 syssetup twain user32 version winedbgc \
|
||||
winspool ws2help ws2_32 wsock32 wshirda iphlpapi kbdus
|
||||
|
||||
SUBSYS = smss win32k csrss ntvdm
|
||||
|
|
|
@ -13,8 +13,6 @@ TARGET_SDKLIBS = winedbgc.a
|
|||
|
||||
TARGET_OBJECTS = charlist.o reader.o richedit.o text-writer.o
|
||||
|
||||
TARGET_NORC = yes
|
||||
|
||||
include $(PATH_TO_TOP)/rules.mak
|
||||
|
||||
include $(TOOLS_PATH)/helper.mk
|
||||
|
|
38
reactos/lib/richedit/riched32.rc
Normal file
38
reactos/lib/richedit/riched32.rc
Normal file
|
@ -0,0 +1,38 @@
|
|||
#include <defines.h>
|
||||
#include <reactos/resource.h>
|
||||
|
||||
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION RES_UINT_FV_MAJOR,RES_UINT_FV_MINOR,RES_UINT_FV_REVISION,RES_UINT_FV_BUILD
|
||||
PRODUCTVERSION RES_UINT_PV_MAJOR,RES_UINT_PV_MINOR,RES_UINT_PV_REVISION,RES_UINT_PV_BUILD
|
||||
FILEFLAGSMASK 0x3fL
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS 0x1L
|
||||
#else
|
||||
FILEFLAGS 0x0L
|
||||
#endif
|
||||
FILEOS 0x40004L
|
||||
FILETYPE 0x2L
|
||||
FILESUBTYPE 0x0L
|
||||
BEGIN
|
||||
BLOCK "StringFileInfo"
|
||||
BEGIN
|
||||
BLOCK "040904b0"
|
||||
BEGIN
|
||||
VALUE "CompanyName", RES_STR_COMPANY_NAME
|
||||
VALUE "FileDescription", "Rich Text Edit Control\0"
|
||||
VALUE "FileVersion", RES_STR_FILE_VERSION
|
||||
VALUE "InternalName", "riched32\0"
|
||||
VALUE "LegalCopyright", RES_STR_LEGAL_COPYRIGHT
|
||||
VALUE "OriginalFilename", "riched32.dll\0"
|
||||
VALUE "ProductName", RES_STR_PRODUCT_NAME
|
||||
VALUE "ProductVersion", RES_STR_PRODUCT_VERSION
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
BEGIN
|
||||
VALUE "Translation", 0x409, 1200
|
||||
END
|
||||
END
|
||||
|
Loading…
Reference in a new issue