mirror of
https://github.com/holub/mame
synced 2025-05-09 07:41:50 +03:00
14 lines
335 B
C
14 lines
335 B
C
// 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
|