Author: tfaber
Date: Thu May 8 12:54:22 2014
New Revision: 63187
URL:
http://svn.reactos.org/svn/reactos?rev=63187&view=rev
Log:
[SHLWAPI]
- Revert 24342314 unintended changes
Modified:
trunk/reactos/dll/win32/shlwapi/path.c
Modified: trunk/reactos/dll/win32/shlwapi/path.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shlwapi/path.c?r…
==============================================================================
--- trunk/reactos/dll/win32/shlwapi/path.c [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shlwapi/path.c [iso-8859-1] Thu May 8 12:54:22 2014
@@ -19,25 +19,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
-#include "config.h"
-#include "wine/port.h"
-
-#include <stdarg.h>
-#include <string.h>
-#include <stdlib.h>
-
-#include "wine/unicode.h"
-#include "windef.h"
-#include "winbase.h"
-#include "wingdi.h"
-#include "winuser.h"
-#include "winreg.h"
-#include "winternl.h"
-#define NO_SHLWAPI_STREAM
-#include "shlwapi.h"
-#include "wine/debug.h"
-
-WINE_DEFAULT_DEBUG_CHANNEL(shell);
+#include "precomp.h"
/* Get a function pointer from a DLL handle */
#define GET_FUNC(func, module, name, fail) \
@@ -2207,7 +2189,7 @@
{
TRACE("(%s)\n",debugstr_a(lpszPath));
- if (lpszPath && lpszPath[0] == '\\' && lpszPath[1] ==
'\\' && lpszPath[2] != '?')
+ if (lpszPath && (lpszPath[0]=='\\') &&
(lpszPath[1]=='\\') && (lpszPath[2]!='?'))
return TRUE;
return FALSE;
}
@@ -2221,7 +2203,7 @@
{
TRACE("(%s)\n",debugstr_w(lpszPath));
- if (lpszPath && lpszPath[0] == '\\' && lpszPath[1] ==
'\\' && lpszPath[2] != '?')
+ if (lpszPath && (lpszPath[0]=='\\') &&
(lpszPath[1]=='\\') && (lpszPath[2]!='?'))
return TRUE;
return FALSE;
}
@@ -2247,7 +2229,7 @@
{
TRACE("(%s)\n", debugstr_a(lpszPath));
- if (lpszPath && *lpszPath++ == '\\' && *lpszPath++ ==
'\\' && *lpszPath != '?')
+ if (lpszPath && *lpszPath++ == '\\' && *lpszPath++ ==
'\\')
{
while (*lpszPath)
{
@@ -2269,7 +2251,7 @@
{
TRACE("(%s)\n", debugstr_w(lpszPath));
- if (lpszPath && lpszPath[0] == '\\' && lpszPath[1] ==
'\\' && lpszPath[2] != '?')
+ if (lpszPath && lpszPath[0] == '\\' && lpszPath[1] ==
'\\')
{
return !strchrW( lpszPath + 2, '\\' );
}
@@ -2297,7 +2279,7 @@
{
TRACE("(%s)\n", debugstr_a(lpszPath));
- if (lpszPath && *lpszPath++ == '\\' && *lpszPath++ ==
'\\' && *lpszPath != '?')
+ if (lpszPath && *lpszPath++ == '\\' && *lpszPath++ ==
'\\')
{
BOOL bSeenSlash = FALSE;
while (*lpszPath)
@@ -2324,7 +2306,7 @@
{
TRACE("(%s)\n", debugstr_w(lpszPath));
- if (lpszPath && *lpszPath++ == '\\' && *lpszPath++ ==
'\\' && *lpszPath != '?')
+ if (lpszPath && *lpszPath++ == '\\' && *lpszPath++ ==
'\\')
{
BOOL bSeenSlash = FALSE;
while (*lpszPath)