From fcd5d4af2f2d50aec3ce515a6304041655f33e06 Mon Sep 17 00:00:00 2001 From: Steve Lhomme Date: Wed, 1 Jan 2025 14:35:32 +0100 Subject: [PATCH] corec: make CheckExts() non-public --- corec/corec/helpers/file/file.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/corec/corec/helpers/file/file.h b/corec/corec/helpers/file/file.h index b0a7fe02..563da0ac 100644 --- a/corec/corec/helpers/file/file.h +++ b/corec/corec/helpers/file/file.h @@ -36,13 +36,14 @@ FILE_DLL void RemovePathDelimiter(tchar_t* Path); FILE_DLL void AddPathDelimiter(tchar_t* Path,size_t PathLen); FILE_DLL const tchar_t* GetProtocol(const tchar_t* URL, tchar_t *_Protocol, int ProtoLen, bool_t* HasHost); FILE_DLL void SplitPath(const tchar_t* Path, tchar_t* Dir, int DirLen, tchar_t* Name, int NameLen, tchar_t* Ext, int ExtLen); -FILE_DLL int CheckExts(const tchar_t* URL, const tchar_t* Exts); FILE_DLL void AbsPath(tchar_t* Abs, int AbsLen, const tchar_t* Path, const tchar_t* Base); FILE_DLL void AbsPathNormalize(tchar_t* Abs, size_t AbsLen); FILE_DLL void ReduceLocalPath(tchar_t* Abs, size_t AbsLen); FILE_DLL void RelPath(tchar_t* Rel, int RelLen, const tchar_t* Path, const tchar_t* Base); FILE_DLL bool_t UpperPath(tchar_t* Path, tchar_t* Last, size_t LastLen); +int CheckExts(const tchar_t* URL, const tchar_t* Exts); + #ifdef __cplusplus } #endif