Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
b6666f93
Commit
b6666f93
authored
Jul 03, 2002
by
Gregg Mattinson
Committed by
Alexandre Julliard
Jul 03, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Avoid multi-line string constants.
parent
5837e8b1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
30 deletions
+30
-30
regedit.c
programs/regedit/regedit.c
+30
-30
No files found.
programs/regedit/regedit.c
View file @
b6666f93
...
...
@@ -24,36 +24,36 @@
#include "regproc.h"
static
char
*
usage
=
"Usage:
regedit filename
regedit /E filename [regpath]
regedit /D regpath
filename - registry file name
regpath - name of the registry key
When is called without any switches adds contents of the specified
registry file to the registry
Switches:
/E - exports contents of the specified registry key to the specified
file. Exports the whole registry if no key is specified.
/D - deletes specified registry key
/S - silent execution, can be used with any other switch.
The only existing mode, exists for compatibility with Windows regedit.
/V - advanced mode, can be used with any other switch.
Ignored, exists for compatibility with Windows regedit.
/L - location of system.dat file. Can be used with any other switch.
Ignored. Exists for compatibility with Windows regedit.
/R - location of user.dat file. Can be used with any other switch.
Ignored. Exists for compatibility with Windows regedit.
/? - print this help. Any other switches are ignored.
/C - create registry from. Not implemented.
The switches are case-insensitive, can be prefixed either by '-' or '/'.
This program is command-line compatible with Microsoft Windows
regedit. The difference with Windows regedit - this application has
command-line interface only.
\n
"
;
"Usage:
\n
"
" regedit filename
\n
"
" regedit /E filename [regpath]
\n
"
" regedit /D regpath
\n
"
"
\n
"
"filename - registry file name
\n
"
"regpath - name of the registry key
\n
"
"
\n
"
"When is called without any switches adds contents of the specified
\n
"
"registry file to the registry
\n
"
"
\n
"
"Switches:
\n
"
" /E - exports contents of the specified registry key to the specified
\n
"
" file. Exports the whole registry if no key is specified.
\n
"
" /D - deletes specified registry key
\n
"
" /S - silent execution, can be used with any other switch.
\n
"
" The only existing mode, exists for compatibility with Windows regedit.
\n
"
" /V - advanced mode, can be used with any other switch.
\n
"
" Ignored, exists for compatibility with Windows regedit.
\n
"
" /L - location of system.dat file. Can be used with any other switch.
\n
"
" Ignored. Exists for compatibility with Windows regedit.
\n
"
" /R - location of user.dat file. Can be used with any other switch.
\n
"
" Ignored. Exists for compatibility with Windows regedit.
\n
"
" /? - print this help. Any other switches are ignored.
\n
"
" /C - create registry from. Not implemented.
\n
"
"
\n
"
"The switches are case-insensitive, can be prefixed either by '-' or '/'.
\n
"
"This program is command-line compatible with Microsoft Windows
\n
"
"regedit. The difference with Windows regedit - this application has
\n
"
"
command-line interface only.
\n
"
;
typedef
enum
{
ACTION_UNDEF
,
ACTION_ADD
,
ACTION_EXPORT
,
ACTION_DELETE
...
...
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