From a88269dd8baa5f28780528bfd8a0df9359fd333c Mon Sep 17 00:00:00 2001 From: Daniel Reimer Date: Sun, 26 Apr 2015 20:38:46 +0000 Subject: [PATCH] [ROSAPPS] Capitalize "os" in the "ReactOS" part 3 by Adam Stachowicz CORE-9558 #comment ROSAPPS patch applied. svn path=/trunk/; revision=67450 --- rosapps/applications/screensavers/mazescr/maze.c | 2 +- rosapps/applications/sysutils/utils/pice/loader/main.c | 2 +- rosapps/applications/sysutils/utils/pice/module/parse.c | 6 +++--- rosapps/applications/sysutils/utils/pice/module/patch.c | 2 +- rosapps/applications/sysutils/utils/pice/module/symbols.c | 2 +- rosapps/applications/sysutils/utils/pice/module/utils.c | 2 +- rosapps/applications/sysutils/utils/pice/module/vga.c | 2 +- .../applications/sysutils/utils/pice/module/vga_utils.asm | 2 +- rosapps/applications/sysutils/utils/pice/readme.txt | 8 ++++---- rosapps/demos/maze/maze.c | 2 +- 10 files changed, 15 insertions(+), 15 deletions(-) diff --git a/rosapps/applications/screensavers/mazescr/maze.c b/rosapps/applications/screensavers/mazescr/maze.c index 9a3a2822f7b..19f8d9a0585 100644 --- a/rosapps/applications/screensavers/mazescr/maze.c +++ b/rosapps/applications/screensavers/mazescr/maze.c @@ -2,7 +2,7 @@ * [ maze ] ... * * modified: [ 03-08-15 ] Ge van Geldorp - * ported to Reactos + * ported to ReactOS * modified: [ 94-10-8 ] Ge van Geldorp * ported to MS Windows * modified: [ 3-7-93 ] Jamie Zawinski diff --git a/rosapps/applications/sysutils/utils/pice/loader/main.c b/rosapps/applications/sysutils/utils/pice/loader/main.c index 309ee03f38a..d72838385cd 100644 --- a/rosapps/applications/sysutils/utils/pice/loader/main.c +++ b/rosapps/applications/sysutils/utils/pice/loader/main.c @@ -17,7 +17,7 @@ Environment: Author: Klaus P. Gerlicher - Reactos Port by Eugene Ingerman + ReactOS Port by Eugene Ingerman Revision History: diff --git a/rosapps/applications/sysutils/utils/pice/module/parse.c b/rosapps/applications/sysutils/utils/pice/module/parse.c index 66e449c9a9a..5b62b1184c9 100644 --- a/rosapps/applications/sysutils/utils/pice/module/parse.c +++ b/rosapps/applications/sysutils/utils/pice/module/parse.c @@ -175,7 +175,7 @@ LPSTR CommandGroups[]= CMDTABLE CmdTable[]={ {"gdt",ShowGdt,"display current global descriptor table" ,0,{0,0,0,0,0},"",COMMAND_GROUP_STRUCT}, {"idt",ShowIdt,"display current interrupt descriptor table" ,0,{0,0,0,0,0},"",COMMAND_GROUP_STRUCT}, - {"x",LeaveIce,"return to Reactos" ,0,{0,0,0,0,0},"",COMMAND_GROUP_FLOW}, + {"x",LeaveIce,"return to ReactOS" ,0,{0,0,0,0,0},"",COMMAND_GROUP_FLOW}, {"t",SingleStep,"single step one instruction" ,0,{0,0,0,0,0},"",COMMAND_GROUP_FLOW}, {"vma",ShowVirtualMemory,"displays VMAs" ,0,{0,0,0,0,0},"",COMMAND_GROUP_OS}, {"h",ShowHelp,"list help on commands" ,0,{0,0,0,0,0},"",COMMAND_GROUP_HELP}, @@ -2003,7 +2003,7 @@ COMMAND_PROTOTYPE(ShowVirtualMemory) COMMAND_PROTOTYPE(Ver) { //ei add kernel version info??!! - PICE_sprintf(tempCmd,"pICE: version %u.%u (build %u) for Reactos\n", + PICE_sprintf(tempCmd,"pICE: version %u.%u (build %u) for ReactOS\n", PICE_MAJOR_VERSION, PICE_MINOR_VERSION, PICE_BUILD); @@ -2016,7 +2016,7 @@ COMMAND_PROTOTYPE(Ver) */ Print(OUTPUT_WINDOW,tempCmd); Print(OUTPUT_WINDOW,"pICE: written by Klaus P. Gerlicher and Goran Devic.\n"); - Print(OUTPUT_WINDOW,"pICE: ported to Reactos by Eugene Ingerman.\n"); + Print(OUTPUT_WINDOW,"pICE: ported to ReactOS by Eugene Ingerman.\n"); return TRUE; } diff --git a/rosapps/applications/sysutils/utils/pice/module/patch.c b/rosapps/applications/sysutils/utils/pice/module/patch.c index 8c56c1a5bdb..4fc6b3b0995 100644 --- a/rosapps/applications/sysutils/utils/pice/module/patch.c +++ b/rosapps/applications/sysutils/utils/pice/module/patch.c @@ -17,7 +17,7 @@ Environment: Author: Klaus P. Gerlicher - Reactos Port: Eugene Ingerman + ReactOS Port: Eugene Ingerman Revision History: diff --git a/rosapps/applications/sysutils/utils/pice/module/symbols.c b/rosapps/applications/sysutils/utils/pice/module/symbols.c index 9c2358e756e..6f52f8b59cc 100644 --- a/rosapps/applications/sysutils/utils/pice/module/symbols.c +++ b/rosapps/applications/sysutils/utils/pice/module/symbols.c @@ -15,7 +15,7 @@ Environment: Author: Klaus P. Gerlicher - Reactos Port by Eugene Ingerman + ReactOS Port by Eugene Ingerman Revision History: diff --git a/rosapps/applications/sysutils/utils/pice/module/utils.c b/rosapps/applications/sysutils/utils/pice/module/utils.c index 076e75fa4fd..64977a0fa51 100644 --- a/rosapps/applications/sysutils/utils/pice/module/utils.c +++ b/rosapps/applications/sysutils/utils/pice/module/utils.c @@ -847,7 +847,7 @@ void ShowRunningMsg(void) SetForegroundColor(COLOR_TEXT); SetBackgroundColor(COLOR_CAPTION); ClrLine(wWindow[OUTPUT_WINDOW].y+wWindow[OUTPUT_WINDOW].cy); - PutChar(" Reactos is running... (Press CTRL-D to stop) ",1,wWindow[OUTPUT_WINDOW].y+wWindow[OUTPUT_WINDOW].cy); + PutChar(" ReactOS is running... (Press CTRL-D to stop) ",1,wWindow[OUTPUT_WINDOW].y+wWindow[OUTPUT_WINDOW].cy); ResetColor(); LEAVE_FUNC(); diff --git a/rosapps/applications/sysutils/utils/pice/module/vga.c b/rosapps/applications/sysutils/utils/pice/module/vga.c index 88d60f69a48..8c6555554bf 100644 --- a/rosapps/applications/sysutils/utils/pice/module/vga.c +++ b/rosapps/applications/sysutils/utils/pice/module/vga.c @@ -17,7 +17,7 @@ Environment: Author: Klaus P. Gerlicher - Reactos Port by Eugene Ingerman + ReactOS Port by Eugene Ingerman Revision History: diff --git a/rosapps/applications/sysutils/utils/pice/module/vga_utils.asm b/rosapps/applications/sysutils/utils/pice/module/vga_utils.asm index 96028177db2..c8e6cdc1db3 100644 --- a/rosapps/applications/sysutils/utils/pice/module/vga_utils.asm +++ b/rosapps/applications/sysutils/utils/pice/module/vga_utils.asm @@ -18,7 +18,7 @@ ;Author: ; ; Klaus P. Gerlicher -; Reactos Port by Eugene Ingerman +; ReactOS Port by Eugene Ingerman ; ;Revision History: ; diff --git a/rosapps/applications/sysutils/utils/pice/readme.txt b/rosapps/applications/sysutils/utils/pice/readme.txt index c1d534144bb..c9ed99e5d7f 100644 --- a/rosapps/applications/sysutils/utils/pice/readme.txt +++ b/rosapps/applications/sysutils/utils/pice/readme.txt @@ -3,12 +3,12 @@ a detailed manual later. BETA-BETA-BETA-BETA-BETA-BETA-BETA-BETA-BETA-BETA-BETA-BETA-BETA-BETA-BETA-BETA-BETA-BETA - PICE for Reactos is in early beta stage of development. It still has many bugs. + PICE for ReactOS is in early beta stage of development. It still has many bugs. BETA-BETA-BETA-BETA-BETA-BETA-BETA-BETA-BETA-BETA-BETA-BETA-BETA-BETA-BETA-BETA-BETA-BETA -PICE is a kernel debugger that was ported for Reactos (the original Linux +PICE is a kernel debugger that was ported for ReactOS (the original Linux project by Klaus P. Gerlicher and Goran Devic may be found here: http://pice.sourceforge.net). @@ -22,7 +22,7 @@ be loaded after keyboard.sys driver. You should add: in ntoskrnl/ldr/loader.c after the line loading keyboard driver. 2. You should copy pice.cfg and ntoskrnl.sym to \SystemRoot\symbols directory -of Reactos. +of ReactOS. 3. If you want to add symbolic information you should use loader.exe to create .dbg file from the unstrippped version of exe or driver: @@ -44,7 +44,7 @@ List of commands: gdt display current global descriptor table idt display current interrupt descriptor table -x return to Reactos +x return to ReactOS t single step one instruction vma displays VMAs h list help on commands diff --git a/rosapps/demos/maze/maze.c b/rosapps/demos/maze/maze.c index f5089f7e88c..105dd72ca5a 100644 --- a/rosapps/demos/maze/maze.c +++ b/rosapps/demos/maze/maze.c @@ -2,7 +2,7 @@ * [ maze ] ... * * modified: [ 03-08-15 ] Ge van Geldorp - * ported to Reactos + * ported to ReactOS * modified: [ 94-10-8 ] Ge van Geldorp * ported to MS Windows * modified: [ 3-7-93 ] Jamie Zawinski