Author: pschweitzer
Date: Sun Oct 2 08:46:30 2016
New Revision: 72888
URL: http://svn.reactos.org/svn/reactos?rev=72888&view=rev
Log:
[SHELL32]
When parsing the UNC names, start the connection to allow the user to browse the net folder immediately.
This is required for network providers which require the connections to be started before browsing (as VBoxNP).
This is likely a hack.
ROSAPPS-303
CORE-11757
Modified:
trunk/reactos/dll/win32/shell32/folders/CNetFolder.cpp
Modified: trunk/reactos/dll/win32/shell32/folders/CNetFolder.cpp
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/folders/…
==============================================================================
--- trunk/reactos/dll/win32/shell32/folders/CNetFolder.cpp [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/folders/CNetFolder.cpp [iso-8859-1] Sun Oct 2 08:46:30 2016
@@ -39,6 +39,8 @@
wcscpy((WCHAR*)&pidl->mkid.abID[0], lpNetworkPlace);
*(WORD*)((char*)pidl + cbData) = 0;
+ WNetAddConnectionW(lpNetworkPlace, NULL, NULL);
+
return pidl;
}
#endif
Author: tfaber
Date: Sun Oct 2 08:34:30 2016
New Revision: 72887
URL: http://svn.reactos.org/svn/reactos?rev=72887&view=rev
Log:
[RTL]
- Only check for MBCS lead bytes in RtlIsTextUnicode if specifically requested
CORE-12027 #resolve for real this time
Modified:
trunk/reactos/sdk/lib/rtl/unicode.c
Modified: trunk/reactos/sdk/lib/rtl/unicode.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/sdk/lib/rtl/unicode.c?rev=…
==============================================================================
--- trunk/reactos/sdk/lib/rtl/unicode.c [iso-8859-1] (original)
+++ trunk/reactos/sdk/lib/rtl/unicode.c [iso-8859-1] Sun Oct 2 08:34:30 2016
@@ -1367,7 +1367,7 @@
else
weight = 1;
- if (flags & IS_TEXT_UNICODE_DBCS_LEADBYTE)
+ if (pf && (*pf & IS_TEXT_UNICODE_DBCS_LEADBYTE))
out_flags |= IS_TEXT_UNICODE_DBCS_LEADBYTE;
}
}
Author: hbelusca
Date: Sat Oct 1 22:58:21 2016
New Revision: 72885
URL: http://svn.reactos.org/svn/reactos?rev=72885&view=rev
Log:
[DISKPART]: Harmonize the source file info headers. No code changes.
Modified:
trunk/reactos/base/system/diskpart/active.c
trunk/reactos/base/system/diskpart/add.c
trunk/reactos/base/system/diskpart/assign.c
trunk/reactos/base/system/diskpart/attach.c
trunk/reactos/base/system/diskpart/attributes.c
trunk/reactos/base/system/diskpart/automount.c
trunk/reactos/base/system/diskpart/break.c
trunk/reactos/base/system/diskpart/clean.c
trunk/reactos/base/system/diskpart/compact.c
trunk/reactos/base/system/diskpart/convert.c
trunk/reactos/base/system/diskpart/create.c
trunk/reactos/base/system/diskpart/delete.c
trunk/reactos/base/system/diskpart/detach.c
trunk/reactos/base/system/diskpart/detail.c
trunk/reactos/base/system/diskpart/diskpart.c
trunk/reactos/base/system/diskpart/diskpart.h
trunk/reactos/base/system/diskpart/expand.c
trunk/reactos/base/system/diskpart/extend.c
trunk/reactos/base/system/diskpart/filesystems.c
trunk/reactos/base/system/diskpart/format.c
trunk/reactos/base/system/diskpart/gpt.c
trunk/reactos/base/system/diskpart/help.c
trunk/reactos/base/system/diskpart/import.c
trunk/reactos/base/system/diskpart/inactive.c
trunk/reactos/base/system/diskpart/list.c
trunk/reactos/base/system/diskpart/merge.c
trunk/reactos/base/system/diskpart/offline.c
trunk/reactos/base/system/diskpart/online.c
trunk/reactos/base/system/diskpart/partlist.c
trunk/reactos/base/system/diskpart/recover.c
trunk/reactos/base/system/diskpart/remove.c
trunk/reactos/base/system/diskpart/repair.c
trunk/reactos/base/system/diskpart/rescan.c
trunk/reactos/base/system/diskpart/resource.h
trunk/reactos/base/system/diskpart/retain.c
trunk/reactos/base/system/diskpart/san.c
trunk/reactos/base/system/diskpart/select.c
trunk/reactos/base/system/diskpart/setid.c
trunk/reactos/base/system/diskpart/shrink.c
trunk/reactos/base/system/diskpart/uniqueid.c
Modified: trunk/reactos/base/system/diskpart/active.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/diskpart/activ…
==============================================================================
--- trunk/reactos/base/system/diskpart/active.c [iso-8859-1] (original)
+++ trunk/reactos/base/system/diskpart/active.c [iso-8859-1] Sat Oct 1 22:58:21 2016
@@ -2,7 +2,7 @@
* PROJECT: ReactOS DiskPart
* LICENSE: GPL - See COPYING in the top level directory
* FILE: base/system/diskpart/active.c
- * PURPOSE: Manages all the partitions of the OS in an interactive way
+ * PURPOSE: Manages all the partitions of the OS in an interactive way.
* PROGRAMMERS: Lee Schroeder
*/
Modified: trunk/reactos/base/system/diskpart/add.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/diskpart/add.c…
==============================================================================
--- trunk/reactos/base/system/diskpart/add.c [iso-8859-1] (original)
+++ trunk/reactos/base/system/diskpart/add.c [iso-8859-1] Sat Oct 1 22:58:21 2016
@@ -2,7 +2,7 @@
* PROJECT: ReactOS DiskPart
* LICENSE: GPL - See COPYING in the top level directory
* FILE: base/system/diskpart/add.c
- * PURPOSE: Manages all the partitions of the OS in an interactive way
+ * PURPOSE: Manages all the partitions of the OS in an interactive way.
* PROGRAMMERS: Lee Schroeder
*/
Modified: trunk/reactos/base/system/diskpart/assign.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/diskpart/assig…
==============================================================================
--- trunk/reactos/base/system/diskpart/assign.c [iso-8859-1] (original)
+++ trunk/reactos/base/system/diskpart/assign.c [iso-8859-1] Sat Oct 1 22:58:21 2016
@@ -2,7 +2,7 @@
* PROJECT: ReactOS DiskPart
* LICENSE: GPL - See COPYING in the top level directory
* FILE: base/system/diskpart/assign.c
- * PURPOSE: Manages all the partitions of the OS in an interactive way
+ * PURPOSE: Manages all the partitions of the OS in an interactive way.
* PROGRAMMERS: Lee Schroeder
*/
Modified: trunk/reactos/base/system/diskpart/attach.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/diskpart/attac…
==============================================================================
--- trunk/reactos/base/system/diskpart/attach.c [iso-8859-1] (original)
+++ trunk/reactos/base/system/diskpart/attach.c [iso-8859-1] Sat Oct 1 22:58:21 2016
@@ -2,7 +2,7 @@
* PROJECT: ReactOS DiskPart
* LICENSE: GPL - See COPYING in the top level directory
* FILE: base/system/diskpart/attach.c
- * PURPOSE: Manages all the partitions of the OS in an interactive way
+ * PURPOSE: Manages all the partitions of the OS in an interactive way.
* PROGRAMMERS: Lee Schroeder
*/
Modified: trunk/reactos/base/system/diskpart/attributes.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/diskpart/attri…
==============================================================================
--- trunk/reactos/base/system/diskpart/attributes.c [iso-8859-1] (original)
+++ trunk/reactos/base/system/diskpart/attributes.c [iso-8859-1] Sat Oct 1 22:58:21 2016
@@ -2,7 +2,7 @@
* PROJECT: ReactOS DiskPart
* LICENSE: GPL - See COPYING in the top level directory
* FILE: base/system/diskpart/attributes.c
- * PURPOSE: Manages all the partitions of the OS in an interactive way
+ * PURPOSE: Manages all the partitions of the OS in an interactive way.
* PROGRAMMERS: Lee Schroeder
*/
Modified: trunk/reactos/base/system/diskpart/automount.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/diskpart/autom…
==============================================================================
--- trunk/reactos/base/system/diskpart/automount.c [iso-8859-1] (original)
+++ trunk/reactos/base/system/diskpart/automount.c [iso-8859-1] Sat Oct 1 22:58:21 2016
@@ -2,7 +2,7 @@
* PROJECT: ReactOS DiskPart
* LICENSE: GPL - See COPYING in the top level directory
* FILE: base/system/diskpart/automount.c
- * PURPOSE: Manages all the partitions of the OS in an interactive way
+ * PURPOSE: Manages all the partitions of the OS in an interactive way.
* PROGRAMMERS: Lee Schroeder
*/
Modified: trunk/reactos/base/system/diskpart/break.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/diskpart/break…
==============================================================================
--- trunk/reactos/base/system/diskpart/break.c [iso-8859-1] (original)
+++ trunk/reactos/base/system/diskpart/break.c [iso-8859-1] Sat Oct 1 22:58:21 2016
@@ -2,8 +2,7 @@
* PROJECT: ReactOS DiskPart
* LICENSE: GPL - See COPYING in the top level directory
* FILE: base/system/diskpart/break.c
- * PURPOSE: Manages all the partitions of the OS in
- * an interactive way
+ * PURPOSE: Manages all the partitions of the OS in an interactive way.
* PROGRAMMERS: Lee Schroeder
*/
Modified: trunk/reactos/base/system/diskpart/clean.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/diskpart/clean…
==============================================================================
--- trunk/reactos/base/system/diskpart/clean.c [iso-8859-1] (original)
+++ trunk/reactos/base/system/diskpart/clean.c [iso-8859-1] Sat Oct 1 22:58:21 2016
@@ -2,8 +2,7 @@
* PROJECT: ReactOS DiskPart
* LICENSE: GPL - See COPYING in the top level directory
* FILE: base/system/diskpart/clean.c
- * PURPOSE: Manages all the partitions of the OS in
- * an interactive way
+ * PURPOSE: Manages all the partitions of the OS in an interactive way.
* PROGRAMMERS: Lee Schroeder
*/
Modified: trunk/reactos/base/system/diskpart/compact.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/diskpart/compa…
==============================================================================
--- trunk/reactos/base/system/diskpart/compact.c [iso-8859-1] (original)
+++ trunk/reactos/base/system/diskpart/compact.c [iso-8859-1] Sat Oct 1 22:58:21 2016
@@ -2,8 +2,7 @@
* PROJECT: ReactOS DiskPart
* LICENSE: GPL - See COPYING in the top level directory
* FILE: base/system/diskpart/compact.c
- * PURPOSE: Manages all the partitions of the OS in
- * an interactive way
+ * PURPOSE: Manages all the partitions of the OS in an interactive way.
* PROGRAMMERS: Lee Schroeder
*/
Modified: trunk/reactos/base/system/diskpart/convert.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/diskpart/conve…
==============================================================================
--- trunk/reactos/base/system/diskpart/convert.c [iso-8859-1] (original)
+++ trunk/reactos/base/system/diskpart/convert.c [iso-8859-1] Sat Oct 1 22:58:21 2016
@@ -2,8 +2,7 @@
* PROJECT: ReactOS DiskPart
* LICENSE: GPL - See COPYING in the top level directory
* FILE: base/system/diskpart/convert.c
- * PURPOSE: Manages all the partitions of the OS in
- * an interactive way
+ * PURPOSE: Manages all the partitions of the OS in an interactive way.
* PROGRAMMERS: Lee Schroeder
*/
Modified: trunk/reactos/base/system/diskpart/create.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/diskpart/creat…
==============================================================================
--- trunk/reactos/base/system/diskpart/create.c [iso-8859-1] (original)
+++ trunk/reactos/base/system/diskpart/create.c [iso-8859-1] Sat Oct 1 22:58:21 2016
@@ -2,8 +2,7 @@
* PROJECT: ReactOS DiskPart
* LICENSE: GPL - See COPYING in the top level directory
* FILE: base/system/diskpart/create.c
- * PURPOSE: Manages all the partitions of the OS in
- * an interactive way
+ * PURPOSE: Manages all the partitions of the OS in an interactive way.
* PROGRAMMERS: Lee Schroeder
*/
Modified: trunk/reactos/base/system/diskpart/delete.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/diskpart/delet…
==============================================================================
--- trunk/reactos/base/system/diskpart/delete.c [iso-8859-1] (original)
+++ trunk/reactos/base/system/diskpart/delete.c [iso-8859-1] Sat Oct 1 22:58:21 2016
@@ -2,8 +2,7 @@
* PROJECT: ReactOS DiskPart
* LICENSE: GPL - See COPYING in the top level directory
* FILE: base/system/diskpart/delete.c
- * PURPOSE: Manages all the partitions of the OS in
- * an interactive way
+ * PURPOSE: Manages all the partitions of the OS in an interactive way.
* PROGRAMMERS: Lee Schroeder
*/
Modified: trunk/reactos/base/system/diskpart/detach.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/diskpart/detac…
==============================================================================
--- trunk/reactos/base/system/diskpart/detach.c [iso-8859-1] (original)
+++ trunk/reactos/base/system/diskpart/detach.c [iso-8859-1] Sat Oct 1 22:58:21 2016
@@ -2,8 +2,7 @@
* PROJECT: ReactOS DiskPart
* LICENSE: GPL - See COPYING in the top level directory
* FILE: base/system/diskpart/detach.c
- * PURPOSE: Manages all the partitions of the OS in
- * an interactive way
+ * PURPOSE: Manages all the partitions of the OS in an interactive way.
* PROGRAMMERS: Lee Schroeder
*/
Modified: trunk/reactos/base/system/diskpart/detail.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/diskpart/detai…
==============================================================================
--- trunk/reactos/base/system/diskpart/detail.c [iso-8859-1] (original)
+++ trunk/reactos/base/system/diskpart/detail.c [iso-8859-1] Sat Oct 1 22:58:21 2016
@@ -2,8 +2,7 @@
* PROJECT: ReactOS DiskPart
* LICENSE: GPL - See COPYING in the top level directory
* FILE: base/system/diskpart/detail.c
- * PURPOSE: Manages all the partitions of the OS in
- * an interactive way
+ * PURPOSE: Manages all the partitions of the OS in an interactive way.
* PROGRAMMERS: Lee Schroeder
*/
Modified: trunk/reactos/base/system/diskpart/diskpart.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/diskpart/diskp…
==============================================================================
--- trunk/reactos/base/system/diskpart/diskpart.c [iso-8859-1] (original)
+++ trunk/reactos/base/system/diskpart/diskpart.c [iso-8859-1] Sat Oct 1 22:58:21 2016
@@ -2,8 +2,7 @@
* PROJECT: ReactOS DiskPart
* LICENSE: GPL - See COPYING in the top level directory
* FILE: base/system/diskpart/diskpart.c
- * PURPOSE: Manages all the partitions of the OS in
- * an interactive way
+ * PURPOSE: Manages all the partitions of the OS in an interactive way.
* PROGRAMMERS: Lee Schroeder
*/
Modified: trunk/reactos/base/system/diskpart/diskpart.h
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/diskpart/diskp…
==============================================================================
--- trunk/reactos/base/system/diskpart/diskpart.h [iso-8859-1] (original)
+++ trunk/reactos/base/system/diskpart/diskpart.h [iso-8859-1] Sat Oct 1 22:58:21 2016
@@ -2,7 +2,7 @@
* PROJECT: ReactOS DiskPart
* LICENSE: GPL - See COPYING in the top level directory
* FILE: base/system/diskpart/diskpart.h
- * PURPOSE: Manages all the partitions of the OS in an interactive way
+ * PURPOSE: Manages all the partitions of the OS in an interactive way.
* PROGRAMMERS: Lee Schroeder
*/
Modified: trunk/reactos/base/system/diskpart/expand.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/diskpart/expan…
==============================================================================
--- trunk/reactos/base/system/diskpart/expand.c [iso-8859-1] (original)
+++ trunk/reactos/base/system/diskpart/expand.c [iso-8859-1] Sat Oct 1 22:58:21 2016
@@ -2,8 +2,7 @@
* PROJECT: ReactOS DiskPart
* LICENSE: GPL - See COPYING in the top level directory
* FILE: base/system/diskpart/expand.c
- * PURPOSE: Manages all the partitions of the OS in
- * an interactive way
+ * PURPOSE: Manages all the partitions of the OS in an interactive way.
* PROGRAMMERS: Lee Schroeder
*/
Modified: trunk/reactos/base/system/diskpart/extend.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/diskpart/exten…
==============================================================================
--- trunk/reactos/base/system/diskpart/extend.c [iso-8859-1] (original)
+++ trunk/reactos/base/system/diskpart/extend.c [iso-8859-1] Sat Oct 1 22:58:21 2016
@@ -2,8 +2,7 @@
* PROJECT: ReactOS DiskPart
* LICENSE: GPL - See COPYING in the top level directory
* FILE: base/system/diskpart/extend.c
- * PURPOSE: Manages all the partitions of the OS in
- * an interactive way
+ * PURPOSE: Manages all the partitions of the OS in an interactive way.
* PROGRAMMERS: Lee Schroeder
*/
Modified: trunk/reactos/base/system/diskpart/filesystems.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/diskpart/files…
==============================================================================
--- trunk/reactos/base/system/diskpart/filesystems.c [iso-8859-1] (original)
+++ trunk/reactos/base/system/diskpart/filesystems.c [iso-8859-1] Sat Oct 1 22:58:21 2016
@@ -2,8 +2,7 @@
* PROJECT: ReactOS DiskPart
* LICENSE: GPL - See COPYING in the top level directory
* FILE: base/system/diskpart/filesystems.c
- * PURPOSE: Manages all the partitions of the OS in
- * an interactive way
+ * PURPOSE: Manages all the partitions of the OS in an interactive way.
* PROGRAMMERS: Lee Schroeder
*/
Modified: trunk/reactos/base/system/diskpart/format.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/diskpart/forma…
==============================================================================
--- trunk/reactos/base/system/diskpart/format.c [iso-8859-1] (original)
+++ trunk/reactos/base/system/diskpart/format.c [iso-8859-1] Sat Oct 1 22:58:21 2016
@@ -2,8 +2,7 @@
* PROJECT: ReactOS DiskPart
* LICENSE: GPL - See COPYING in the top level directory
* FILE: base/system/diskpart/format.c
- * PURPOSE: Manages all the partitions of the OS in
- * an interactive way
+ * PURPOSE: Manages all the partitions of the OS in an interactive way.
* PROGRAMMERS: Lee Schroeder
*/
Modified: trunk/reactos/base/system/diskpart/gpt.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/diskpart/gpt.c…
==============================================================================
--- trunk/reactos/base/system/diskpart/gpt.c [iso-8859-1] (original)
+++ trunk/reactos/base/system/diskpart/gpt.c [iso-8859-1] Sat Oct 1 22:58:21 2016
@@ -2,8 +2,7 @@
* PROJECT: ReactOS DiskPart
* LICENSE: GPL - See COPYING in the top level directory
* FILE: base/system/diskpart/gpt.c
- * PURPOSE: Manages all the partitions of the OS in
- * an interactive way
+ * PURPOSE: Manages all the partitions of the OS in an interactive way.
* PROGRAMMERS: Lee Schroeder
*/
Modified: trunk/reactos/base/system/diskpart/help.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/diskpart/help.…
==============================================================================
--- trunk/reactos/base/system/diskpart/help.c [iso-8859-1] (original)
+++ trunk/reactos/base/system/diskpart/help.c [iso-8859-1] Sat Oct 1 22:58:21 2016
@@ -2,7 +2,7 @@
* PROJECT: ReactOS DiskPart
* LICENSE: GPL - See COPYING in the top level directory
* FILE: base/system/diskpart/help.c
- * PURPOSE: Manages all the partitions of the OS in an interactive way
+ * PURPOSE: Manages all the partitions of the OS in an interactive way.
* PROGRAMMERS: Lee Schroeder
*/
Modified: trunk/reactos/base/system/diskpart/import.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/diskpart/impor…
==============================================================================
--- trunk/reactos/base/system/diskpart/import.c [iso-8859-1] (original)
+++ trunk/reactos/base/system/diskpart/import.c [iso-8859-1] Sat Oct 1 22:58:21 2016
@@ -2,8 +2,7 @@
* PROJECT: ReactOS DiskPart
* LICENSE: GPL - See COPYING in the top level directory
* FILE: base/system/diskpart/import.c
- * PURPOSE: Manages all the partitions of the OS in
- * an interactive way
+ * PURPOSE: Manages all the partitions of the OS in an interactive way.
* PROGRAMMERS: Lee Schroeder
*/
Modified: trunk/reactos/base/system/diskpart/inactive.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/diskpart/inact…
==============================================================================
--- trunk/reactos/base/system/diskpart/inactive.c [iso-8859-1] (original)
+++ trunk/reactos/base/system/diskpart/inactive.c [iso-8859-1] Sat Oct 1 22:58:21 2016
@@ -2,8 +2,7 @@
* PROJECT: ReactOS DiskPart
* LICENSE: GPL - See COPYING in the top level directory
* FILE: base/system/diskpart/inactive.c
- * PURPOSE: Manages all the partitions of the OS in
- * an interactive way
+ * PURPOSE: Manages all the partitions of the OS in an interactive way.
* PROGRAMMERS: Lee Schroeder
*/
Modified: trunk/reactos/base/system/diskpart/list.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/diskpart/list.…
==============================================================================
--- trunk/reactos/base/system/diskpart/list.c [iso-8859-1] (original)
+++ trunk/reactos/base/system/diskpart/list.c [iso-8859-1] Sat Oct 1 22:58:21 2016
@@ -2,7 +2,7 @@
* PROJECT: ReactOS DiskPart
* LICENSE: GPL - See COPYING in the top level directory
* FILE: base/system/diskpart/list.c
- * PURPOSE: Manages all the partitions of the OS in an interactive way
+ * PURPOSE: Manages all the partitions of the OS in an interactive way.
* PROGRAMMERS: Lee Schroeder
*/
Modified: trunk/reactos/base/system/diskpart/merge.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/diskpart/merge…
==============================================================================
--- trunk/reactos/base/system/diskpart/merge.c [iso-8859-1] (original)
+++ trunk/reactos/base/system/diskpart/merge.c [iso-8859-1] Sat Oct 1 22:58:21 2016
@@ -2,8 +2,7 @@
* PROJECT: ReactOS DiskPart
* LICENSE: GPL - See COPYING in the top level directory
* FILE: base/system/diskpart/merge.c
- * PURPOSE: Manages all the partitions of the OS in
- * an interactive way
+ * PURPOSE: Manages all the partitions of the OS in an interactive way.
* PROGRAMMERS: Lee Schroeder
*/
Modified: trunk/reactos/base/system/diskpart/offline.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/diskpart/offli…
==============================================================================
--- trunk/reactos/base/system/diskpart/offline.c [iso-8859-1] (original)
+++ trunk/reactos/base/system/diskpart/offline.c [iso-8859-1] Sat Oct 1 22:58:21 2016
@@ -2,8 +2,7 @@
* PROJECT: ReactOS DiskPart
* LICENSE: GPL - See COPYING in the top level directory
* FILE: base/system/diskpart/offline.c
- * PURPOSE: Manages all the partitions of the OS in
- * an interactive way
+ * PURPOSE: Manages all the partitions of the OS in an interactive way.
* PROGRAMMERS: Lee Schroeder
*/
Modified: trunk/reactos/base/system/diskpart/online.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/diskpart/onlin…
==============================================================================
--- trunk/reactos/base/system/diskpart/online.c [iso-8859-1] (original)
+++ trunk/reactos/base/system/diskpart/online.c [iso-8859-1] Sat Oct 1 22:58:21 2016
@@ -2,8 +2,7 @@
* PROJECT: ReactOS DiskPart
* LICENSE: GPL - See COPYING in the top level directory
* FILE: base/system/diskpart/online.c
- * PURPOSE: Manages all the partitions of the OS in
- * an interactive way
+ * PURPOSE: Manages all the partitions of the OS in an interactive way.
* PROGRAMMERS: Lee Schroeder
*/
Modified: trunk/reactos/base/system/diskpart/partlist.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/diskpart/partl…
==============================================================================
--- trunk/reactos/base/system/diskpart/partlist.c [iso-8859-1] (original)
+++ trunk/reactos/base/system/diskpart/partlist.c [iso-8859-1] Sat Oct 1 22:58:21 2016
@@ -2,7 +2,7 @@
* PROJECT: ReactOS DiskPart
* LICENSE: GPL - See COPYING in the top level directory
* FILE: base/system/diskpart/partlist.c
- * PURPOSE: Manages all the partitions of the OS in an interactive way
+ * PURPOSE: Manages all the partitions of the OS in an interactive way.
* PROGRAMMERS: Eric Kohl
*/
Modified: trunk/reactos/base/system/diskpart/recover.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/diskpart/recov…
==============================================================================
--- trunk/reactos/base/system/diskpart/recover.c [iso-8859-1] (original)
+++ trunk/reactos/base/system/diskpart/recover.c [iso-8859-1] Sat Oct 1 22:58:21 2016
@@ -2,8 +2,7 @@
* PROJECT: ReactOS DiskPart
* LICENSE: GPL - See COPYING in the top level directory
* FILE: base/system/diskpart/recover.c
- * PURPOSE: Manages all the partitions of the OS in
- * an interactive way
+ * PURPOSE: Manages all the partitions of the OS in an interactive way.
* PROGRAMMERS: Lee Schroeder
*/
Modified: trunk/reactos/base/system/diskpart/remove.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/diskpart/remov…
==============================================================================
--- trunk/reactos/base/system/diskpart/remove.c [iso-8859-1] (original)
+++ trunk/reactos/base/system/diskpart/remove.c [iso-8859-1] Sat Oct 1 22:58:21 2016
@@ -2,8 +2,7 @@
* PROJECT: ReactOS DiskPart
* LICENSE: GPL - See COPYING in the top level directory
* FILE: base/system/diskpart/remove.c
- * PURPOSE: Manages all the partitions of the OS in
- * an interactive way
+ * PURPOSE: Manages all the partitions of the OS in an interactive way.
* PROGRAMMERS: Lee Schroeder
*/
Modified: trunk/reactos/base/system/diskpart/repair.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/diskpart/repai…
==============================================================================
--- trunk/reactos/base/system/diskpart/repair.c [iso-8859-1] (original)
+++ trunk/reactos/base/system/diskpart/repair.c [iso-8859-1] Sat Oct 1 22:58:21 2016
@@ -2,8 +2,7 @@
* PROJECT: ReactOS DiskPart
* LICENSE: GPL - See COPYING in the top level directory
* FILE: base/system/diskpart/repair.c
- * PURPOSE: Manages all the partitions of the OS in
- * an interactive way
+ * PURPOSE: Manages all the partitions of the OS in an interactive way.
* PROGRAMMERS: Lee Schroeder
*/
Modified: trunk/reactos/base/system/diskpart/rescan.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/diskpart/resca…
==============================================================================
--- trunk/reactos/base/system/diskpart/rescan.c [iso-8859-1] (original)
+++ trunk/reactos/base/system/diskpart/rescan.c [iso-8859-1] Sat Oct 1 22:58:21 2016
@@ -2,7 +2,7 @@
* PROJECT: ReactOS DiskPart
* LICENSE: GPL - See COPYING in the top level directory
* FILE: base/system/diskpart/rescan.c
- * PURPOSE: Manages all the partitions of the OS in an interactive way
+ * PURPOSE: Manages all the partitions of the OS in an interactive way.
* PROGRAMMERS: Lee Schroeder
*/
Modified: trunk/reactos/base/system/diskpart/resource.h
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/diskpart/resou…
==============================================================================
--- trunk/reactos/base/system/diskpart/resource.h [iso-8859-1] (original)
+++ trunk/reactos/base/system/diskpart/resource.h [iso-8859-1] Sat Oct 1 22:58:21 2016
@@ -1,9 +1,9 @@
/*
- * PROJECT: ReactOS DiskPart
- * LICENSE: GPL - See COPYING in the top level directory
- * FILE: base/system/diskpart/resource.h
- * PURPOSE: Manages all the partitions of the OS in an interactive way
- * PROGRAMMERS: Lee Schroeder
+ * PROJECT: ReactOS DiskPart
+ * LICENSE: GPL - See COPYING in the top level directory
+ * FILE: base/system/diskpart/resource.h
+ * PURPOSE: Manages all the partitions of the OS in an interactive way
+ * PROGRAMMERS: Lee Schroeder
*/
#pragma once
Modified: trunk/reactos/base/system/diskpart/retain.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/diskpart/retai…
==============================================================================
--- trunk/reactos/base/system/diskpart/retain.c [iso-8859-1] (original)
+++ trunk/reactos/base/system/diskpart/retain.c [iso-8859-1] Sat Oct 1 22:58:21 2016
@@ -2,8 +2,7 @@
* PROJECT: ReactOS DiskPart
* LICENSE: GPL - See COPYING in the top level directory
* FILE: base/system/diskpart/retain.c
- * PURPOSE: Manages all the partitions of the OS in
- * an interactive way
+ * PURPOSE: Manages all the partitions of the OS in an interactive way.
* PROGRAMMERS: Lee Schroeder
*/
Modified: trunk/reactos/base/system/diskpart/san.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/diskpart/san.c…
==============================================================================
--- trunk/reactos/base/system/diskpart/san.c [iso-8859-1] (original)
+++ trunk/reactos/base/system/diskpart/san.c [iso-8859-1] Sat Oct 1 22:58:21 2016
@@ -2,8 +2,7 @@
* PROJECT: ReactOS DiskPart
* LICENSE: GPL - See COPYING in the top level directory
* FILE: base/system/diskpart/san.c
- * PURPOSE: Manages all the partitions of the OS in
- * an interactive way
+ * PURPOSE: Manages all the partitions of the OS in an interactive way.
* PROGRAMMERS: Lee Schroeder
*/
Modified: trunk/reactos/base/system/diskpart/select.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/diskpart/selec…
==============================================================================
--- trunk/reactos/base/system/diskpart/select.c [iso-8859-1] (original)
+++ trunk/reactos/base/system/diskpart/select.c [iso-8859-1] Sat Oct 1 22:58:21 2016
@@ -2,7 +2,7 @@
* PROJECT: ReactOS DiskPart
* LICENSE: GPL - See COPYING in the top level directory
* FILE: base/system/diskpart/select.c
- * PURPOSE: Manages all the partitions of the OS in an interactive way
+ * PURPOSE: Manages all the partitions of the OS in an interactive way.
* PROGRAMMERS: Lee Schroeder
*/
Modified: trunk/reactos/base/system/diskpart/setid.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/diskpart/setid…
==============================================================================
--- trunk/reactos/base/system/diskpart/setid.c [iso-8859-1] (original)
+++ trunk/reactos/base/system/diskpart/setid.c [iso-8859-1] Sat Oct 1 22:58:21 2016
@@ -2,8 +2,7 @@
* PROJECT: ReactOS DiskPart
* LICENSE: GPL - See COPYING in the top level directory
* FILE: base/system/diskpart/setid.c
- * PURPOSE: Manages all the partitions of the OS in
- * an interactive way
+ * PURPOSE: Manages all the partitions of the OS in an interactive way.
* PROGRAMMERS: Lee Schroeder
*/
Modified: trunk/reactos/base/system/diskpart/shrink.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/diskpart/shrin…
==============================================================================
--- trunk/reactos/base/system/diskpart/shrink.c [iso-8859-1] (original)
+++ trunk/reactos/base/system/diskpart/shrink.c [iso-8859-1] Sat Oct 1 22:58:21 2016
@@ -2,8 +2,7 @@
* PROJECT: ReactOS DiskPart
* LICENSE: GPL - See COPYING in the top level directory
* FILE: base/system/diskpart/shrink.c
- * PURPOSE: Manages all the partitions of the OS in
- * an interactive way
+ * PURPOSE: Manages all the partitions of the OS in an interactive way.
* PROGRAMMERS: Lee Schroeder
*/
Modified: trunk/reactos/base/system/diskpart/uniqueid.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/system/diskpart/uniqu…
==============================================================================
--- trunk/reactos/base/system/diskpart/uniqueid.c [iso-8859-1] (original)
+++ trunk/reactos/base/system/diskpart/uniqueid.c [iso-8859-1] Sat Oct 1 22:58:21 2016
@@ -2,8 +2,7 @@
* PROJECT: ReactOS DiskPart
* LICENSE: GPL - See COPYING in the top level directory
* FILE: base/system/diskpart/uniqueid.c
- * PURPOSE: Manages all the partitions of the OS in
- * an interactive way
+ * PURPOSE: Manages all the partitions of the OS in an interactive way.
* PROGRAMMERS: Lee Schroeder
*/