Multi-line string constants

Gregg Mattinson gm138242 at scot.canada.sun.com
Tue Jul 2 14:32:53 CDT 2002


Changelog: programs/regedit/regedit.c
 - Forte compiler does not allow multi-line string constants.

Gregg Mattinson
Co-op Developer
Sun Microsystems of Canada

-------------- next part --------------
Index: programs/regedit/regedit.c
===================================================================
RCS file: /opcom/comp/ws/wine/CVSROOT/wine/programs/regedit/regedit.c,v
retrieving revision 1.1
diff -u -r1.1 regedit.c
--- /tmp/T0iGaiVF	Tue Jul  2 13:54:02 2002
+++ regedit.c	Tue Jun 25 08:01:01 2002
@@ -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


More information about the wine-patches mailing list