Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
fe61065c
Commit
fe61065c
authored
Aug 15, 2002
by
Andriy Palamarchuk
Committed by
Alexandre Julliard
Aug 15, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Linked regedit against msvcrt instead of the platform I/O library, so
it can handle full Windows paths.
parent
befbb0e4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
6 deletions
+3
-6
Makefile.in
programs/regedit/Makefile.in
+2
-1
regproc.c
programs/regedit/regproc.c
+1
-5
No files found.
programs/regedit/Makefile.in
View file @
fe61065c
...
...
@@ -4,7 +4,8 @@ SRCDIR = @srcdir@
VPATH
=
@srcdir@
MODULE
=
regedit.exe
APPMODE
=
gui
IMPORTS
=
advapi32 kernel32
IMPORTS
=
msvcrt advapi32 kernel32
EXTRAINCL
=
-I
$(TOPSRCDIR)
/include/msvcrt
C_SRCS
=
\
regedit.c
\
...
...
programs/regedit/regproc.c
View file @
fe61065c
...
...
@@ -20,9 +20,6 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
#include "wine/port.h"
#include <limits.h>
#include <stdio.h>
#include <windows.h>
...
...
@@ -1283,7 +1280,7 @@ void export_hkey(FILE *file, HKEY key,
CHAR
buf
[
20
];
int
cur_pos
;
if
(
value_type
==
REG_BINARY
)
if
(
value_type
==
REG_BINARY
)
{
hex_prefix
=
"hex:"
;
}
else
{
...
...
@@ -1574,4 +1571,3 @@ CHAR *getAppName()
{
return
app_name
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment