Commit f6366e2d authored by Alexandre Julliard's avatar Alexandre Julliard

regedit.exe: We can now store binary files in the repository.

parent d1cadd47
......@@ -632,14 +632,8 @@ programs/oleview/oleview
programs/oleview/rsrc.res
programs/progman/progman
programs/progman/rsrc.res
programs/regedit/bin.ico
programs/regedit/computer.ico
programs/regedit/folder.ico
programs/regedit/folderopen.ico
programs/regedit/regedit
programs/regedit/regedit.ico
programs/regedit/rsrc.res
programs/regedit/string.ico
programs/regsvr32/regsvr32
programs/regsvr32/regsvr32.res
programs/rpcss/irot.h
......
......@@ -23,14 +23,6 @@ C_SRCS = \
treeview.c
RC_SRCS = rsrc.rc
RC_BINSRC = resource.rc
RC_BINARIES = \
bin.ico \
computer.ico \
folder.ico \
folderopen.ico \
regedit.ico \
string.ico
@MAKE_PROG_RULES@
......
......@@ -38,7 +38,35 @@ IDC_REGEDIT ACCELERATORS
VK_F5, ID_VIEW_REFRESH, VIRTKEY
}
#include "resource.rc"
/* @makedep: folderopen.ico */
IDI_OPEN_FILE ICON DISCARDABLE folderopen.ico
/* @makedep: folder.ico */
IDI_CLOSED_FILE ICON DISCARDABLE folder.ico
/* @makedep: computer.ico */
IDI_ROOT ICON DISCARDABLE computer.ico
/* @makedep: string.ico */
IDI_STRING ICON DISCARDABLE string.ico
/* @makedep: bin.ico */
IDI_BIN ICON DISCARDABLE bin.ico
/* @makedep: regedit.ico */
IDI_REGEDIT ICON DISCARDABLE regedit.ico
#define WINE_FILEDESCRIPTION_STR "Wine Registry Editor"
#define WINE_FILENAME "REGEDIT"
#define WINE_FILENAME_STR "REGEDIT.EXE"
#define WINE_FILETYPE VFT_APP
#define WINE_FILEVERSION 5,2,3790,0
#define WINE_FILEVERSION_STR "5.2.3790.0"
#define WINE_PRODUCTVERSION 5,2,3790,0
#define WINE_PRODUCTVERSION_STR "5.2"
#include "wine/wine_common_ver.rc"
/* include localised resources */
......
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