mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-07 05:15:01 -06:00
14 lines
335 B
C
Executable File
14 lines
335 B
C
Executable File
// ExtractingFilePath.h
|
|
|
|
#ifndef __EXTRACTING_FILE_PATH_H
|
|
#define __EXTRACTING_FILE_PATH_H
|
|
|
|
#include "Common/MyString.h"
|
|
|
|
UString MakePathNameFromParts(const UStringVector &parts);
|
|
void MakeCorrectPath(UStringVector &pathParts);
|
|
UString GetCorrectFsPath(const UString &path);
|
|
UString GetCorrectFullFsPath(const UString &path);
|
|
|
|
#endif
|