mirror of
https://github.com/holub/mame
synced 2025-06-28 23:24:23 +03:00
31 lines
801 B
C++
31 lines
801 B
C++
// Archive/Common/ItemNameUtils.h
|
|
|
|
#ifndef ZIP7_INC_ARCHIVE_ITEM_NAME_UTILS_H
|
|
#define ZIP7_INC_ARCHIVE_ITEM_NAME_UTILS_H
|
|
|
|
#include "../../../Common/MyString.h"
|
|
|
|
namespace NArchive {
|
|
namespace NItemName {
|
|
|
|
void ReplaceSlashes_OsToUnix(UString &name);
|
|
|
|
UString GetOsPath(const UString &name);
|
|
UString GetOsPath_Remove_TailSlash(const UString &name);
|
|
|
|
void ReplaceToOsSlashes_Remove_TailSlash(UString &name, bool useBackslashReplacement = false);
|
|
void NormalizeSlashes_in_FileName_for_OsPath(wchar_t *s, unsigned len);
|
|
void NormalizeSlashes_in_FileName_for_OsPath(UString &name);
|
|
|
|
bool HasTailSlash(const AString &name, UINT codePage);
|
|
|
|
#ifdef _WIN32
|
|
inline UString WinPathToOsPath(const UString &name) { return name; }
|
|
#else
|
|
UString WinPathToOsPath(const UString &name);
|
|
#endif
|
|
|
|
}}
|
|
|
|
#endif
|