mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-11 08:07:12 -06:00
20 lines
345 B
C++
Executable File
20 lines
345 B
C++
Executable File
// Archive/Common/ItemNameUtils.h
|
|
|
|
#pragma once
|
|
|
|
#ifndef __ARCHIVE_ITEMNAMEUTILS_H
|
|
#define __ARCHIVE_ITEMNAMEUTILS_H
|
|
|
|
#include "../../../Common/String.h"
|
|
|
|
namespace NArchive {
|
|
namespace NItemName {
|
|
|
|
UString MakeLegalName(const UString &aName);
|
|
UString GetOSName(const UString &aName);
|
|
UString GetOSName2(const UString &aName);
|
|
|
|
}}
|
|
|
|
#endif
|