Changeset 1471
- Timestamp:
- 09/05/10 13:37:48 (21 months ago)
- Location:
- trunk/contrib/applications/NXextract/src
- Files:
-
- 10 edited
-
base.cpp (modified) (1 diff)
-
base.h (modified) (1 diff)
-
bmp.cpp (modified) (1 diff)
-
extractor.cpp (modified) (1 diff)
-
extractorapp.cpp (modified) (1 diff)
-
file.cpp (modified) (3 diffs)
-
jpegwrap.cpp (modified) (1 diff)
-
membuf.cpp (modified) (1 diff)
-
nexusevaluator.cpp (modified) (1 diff)
-
templateparsor.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/contrib/applications/NXextract/src/base.cpp
r1446 r1471 832 832 // String::RemoveEnclosure 833 833 //--------------------------------------------------------------------------- 834 bool String::RemoveEnclosure(p sz pszLeft, psz pszRight)834 bool String::RemoveEnclosure(pcsz pszLeft, pcsz pszRight) 835 835 { 836 836 // pcszLeft & pcszRight must have the same length -
trunk/contrib/applications/NXextract/src/base.h
r1446 r1471 237 237 /// @param pcszRight list of possible right enclosure chars 238 238 /// @return true if enclosure was removed 239 bool RemoveEnclosure(p sz pszLeft, psz pszRight);239 bool RemoveEnclosure(pcsz pszLeft, pcsz pszRight); 240 240 bool RemoveEnclosure(char cLeft, char cRight); 241 241 -
trunk/contrib/applications/NXextract/src/bmp.cpp
r1446 r1471 16 16 //***************************************************************************** 17 17 18 #include <cstring> 19 #include <cstdlib> 20 #include <cstdio> 18 21 #include "base.h" 19 22 #include "file.h" -
trunk/contrib/applications/NXextract/src/extractor.cpp
r1446 r1471 32 32 #include <sstream> 33 33 #include <vector> 34 #include <cstring> 35 #include <cstdlib> 34 36 35 37 #include "nexusevaluator.h" -
trunk/contrib/applications/NXextract/src/extractorapp.cpp
r1446 r1471 26 26 #include <sstream> 27 27 #include <vector> 28 #include <cstdlib> 29 #include <cstring> 28 30 29 31 #include "nexusevaluator.h" -
trunk/contrib/applications/NXextract/src/file.cpp
r1446 r1471 518 518 return; 519 519 520 c har *p;520 const char *p; 521 521 #ifdef __WIN32__ 522 522 // Skeep UNC starting if it exists … … 575 575 do 576 576 { 577 *p = 0;577 str[p - PSZ(str)] = '\0'; // *p = 0; 578 578 struct stat st; 579 579 if( ::stat(PSZ(str), &st) ) … … 634 634 } 635 635 // Next path component 636 *p = SEP_PATH;636 str[p - PSZ(str)] = SEP_PATH; // *p = SEP_PATH; 637 637 p = strchr(p+1, SEP_PATH); 638 638 } while( p ); -
trunk/contrib/applications/NXextract/src/jpegwrap.cpp
r1446 r1471 16 16 //***************************************************************************** 17 17 18 #include <cstring> 19 #include <cstdlib> 20 #include <cstdio> 18 21 #include "base.h" 19 22 #include "file.h" -
trunk/contrib/applications/NXextract/src/membuf.cpp
r1446 r1471 643 643 String CMemBuf::HexString() const 644 644 { 645 static c har *pszHexa = "0123456789ABCDEF";645 static const char *pszHexa = "0123456789ABCDEF"; 646 646 ostringstream oss; 647 647 String str; -
trunk/contrib/applications/NXextract/src/nexusevaluator.cpp
r1446 r1471 23 23 #include "variant.h" 24 24 25 #include <sstream> 26 #include <cstdlib> 27 #include <cstring> 25 28 #include "nexusevaluator.h" 26 29 #include "extractor.h" 27 30 #include "templateparsor.h" 28 #include <sstream>29 31 30 32 // special attributes -
trunk/contrib/applications/NXextract/src/templateparsor.cpp
r1446 r1471 26 26 #include <sstream> 27 27 #include <vector> 28 #include <cstring> 29 #include <cstdlib> 28 30 29 31 #include "nexusevaluator.h"
Note: See TracChangeset
for help on using the changeset viewer.
