From 4307e3115e19696a31f9f006014d1a22ee4fe212 Mon Sep 17 00:00:00 2001 From: Martin Fuchs Date: Sat, 22 May 2004 13:18:45 +0000 Subject: [PATCH] code comments svn path=/trunk/; revision=9469 --- reactos/subsys/system/explorer/make_explorer.dsp | 2 +- reactos/subsys/system/explorer/utility/xmlstorage.h | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/reactos/subsys/system/explorer/make_explorer.dsp b/reactos/subsys/system/explorer/make_explorer.dsp index 7500119cfab..1631b01d435 100644 --- a/reactos/subsys/system/explorer/make_explorer.dsp +++ b/reactos/subsys/system/explorer/make_explorer.dsp @@ -108,7 +108,7 @@ CFG=make_explorer - Win32 bjam # PROP Use_Debug_Libraries 0 # PROP Output_Dir "URelease" # PROP Intermediate_Dir "URelease" -# PROP Cmd_Line "make -f Makefile.MinGW UNICODE=1" +# PROP Cmd_Line "msdevfilt -gcc make -f Makefile.MinGW UNICODE=1" # PROP Rebuild_Opt "clean all" # PROP Target_File "explorer.exe" # PROP Bsc_Name "" diff --git a/reactos/subsys/system/explorer/utility/xmlstorage.h b/reactos/subsys/system/explorer/utility/xmlstorage.h index 910f8bb3b3e..616c3401906 100644 --- a/reactos/subsys/system/explorer/utility/xmlstorage.h +++ b/reactos/subsys/system/explorer/utility/xmlstorage.h @@ -213,6 +213,7 @@ typedef __gnu_cxx::stdio_filebuf STDIO_FILEBUF; typedef std::filebuf STDIO_FILEBUF; #endif + /// input file stream with ANSI/UNICODE file names struct tifstream : public std::istream { typedef std::istream super; @@ -239,6 +240,7 @@ protected: STDIO_FILEBUF _buf; }; + /// output file stream with ANSI/UNICODE file names struct tofstream : public std::ostream { typedef std::ostream super; @@ -295,7 +297,7 @@ struct String_from_XML_Char : public String inline bool operator==(const String& s1, const char* s2) { LPCWSTR p = s1; - const unsigned char* q = (const unsigned char *) s2; + const unsigned char* q = (const unsigned char*)s2; while(*p && *q) if (*p++ != *q++)