mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-09 10:07:10 -06:00
18 lines
342 B
C++
Executable File
18 lines
342 B
C++
Executable File
// Windows/FileName.h
|
|
|
|
#ifndef __WINDOWS_FILE_NAME_H
|
|
#define __WINDOWS_FILE_NAME_H
|
|
|
|
#include "../Common/MyString.h"
|
|
|
|
namespace NWindows {
|
|
namespace NFile {
|
|
namespace NName {
|
|
|
|
void NormalizeDirPathPrefix(FString &dirPath); // ensures that it ended with '\\', if dirPath is not epmty
|
|
void NormalizeDirPathPrefix(UString &dirPath);
|
|
|
|
}}}
|
|
|
|
#endif
|