Mercurial > vba-clojure
view src/win32/7zip/7z/CPP/Windows/FileName.h @ 4:5f6f2134e8ce
apu appears to not be used
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Sat, 03 Mar 2012 10:35:58 -0600 |
parents | f9f4f1b99eed |
children |
line wrap: on
line source
1 // Windows/FileName.h3 #ifndef __WINDOWS_FILENAME_H4 #define __WINDOWS_FILENAME_H6 #include "../Common/MyString.h"8 namespace NWindows {9 namespace NFile {10 namespace NName {12 const TCHAR kDirDelimiter = CHAR_PATH_SEPARATOR;13 const TCHAR kAnyStringWildcard = '*';15 void NormalizeDirPathPrefix(CSysString &dirPath); // ensures that it ended with '\\'16 #ifndef _UNICODE17 void NormalizeDirPathPrefix(UString &dirPath); // ensures that it ended with '\\'18 #endif20 void SplitNameToPureNameAndExtension(const UString &fullName,21 UString &pureName, UString &extensionDelimiter, UString &extension);23 }}}25 #endif