mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2025-07-12 02:34:59 +03:00
src/Mayaqua/FileIO: remove unused functions
[src/Mayaqua/FileIO.c:2299]: (style) The function 'ConvertPath' is never used. [src/Mayaqua/FileIO.c:728]: (style) The function 'ConvertSafeFileNameW' is never used. [src/Mayaqua/FileIO.c:2359]: (style) The function 'DeleteDirInner' is never used. [src/Mayaqua/FileIO.c:2232]: (style) The function 'FileCloseAndDelete' is never used. [src/Mayaqua/FileIO.c:2748]: (style) The function 'FileCreateInner' is never used. [src/Mayaqua/FileIO.c:2537]: (style) The function 'FileDeleteInner' is never used. [src/Mayaqua/FileIO.c:2858]: (style) The function 'FileOpenInner' is never used. [src/Mayaqua/FileIO.c:2276]: (style) The function 'FileRenameInner' is never used. [src/Mayaqua/FileIO.c:680]: (style) The function 'FileReplaceRename' is never used. [src/Mayaqua/FileIO.c:2581]: (style) The function 'FileSizeEx' is never used. [src/Mayaqua/FileIO.c:2812]: (style) The function 'FileWriteAll' is never used. [src/Mayaqua/FileIO.c:1992]: (style) The function 'GetCurrentDir' is never used. [src/Mayaqua/FileIO.c:765]: (style) The function 'GetDiskFreeW' is never used. [src/Mayaqua/FileIO.c:1852]: (style) The function 'IsFileExistsInner' is never used. [src/Mayaqua/FileIO.c:235]: (style) The function 'IsFileWriteLocked' is never used. [src/Mayaqua/FileIO.c:2494]: (style) The function 'MakeDirInner' is never used. [src/Mayaqua/FileIO.c:1568]: (style) The function 'MakeSafeFileNameW' is never used. [src/Mayaqua/FileIO.c:1941]: (style) The function 'ParseSplitedPath' is never used. [src/Mayaqua/FileIO.c:995]: (style) The function 'SafeFileNameW' is never used. [src/Mayaqua/FileIO.c:2369]: (style) The function 'FileSizeExW' is never used. [src/Mayaqua/FileIO.c:1848]: (style) The function 'GetCurrentDirW' is never used.
This commit is contained in:
@ -277,46 +277,35 @@ void ZipAddFileFooter(ZIP_PACKER *p);
|
||||
FIFO *ZipFinish(ZIP_PACKER *p);
|
||||
bool ZipWriteW(ZIP_PACKER *p, wchar_t *name);
|
||||
|
||||
bool DeleteDirInner(char *name);
|
||||
bool DeleteDirInnerW(wchar_t *name);
|
||||
bool DeleteDir(char *name);
|
||||
bool DeleteDirW(wchar_t *name);
|
||||
bool MakeDirInner(char *name);
|
||||
bool MakeDirInnerW(wchar_t *name);
|
||||
bool MakeDir(char *name);
|
||||
bool MakeDirW(wchar_t *name);
|
||||
bool MakeDirEx(char *name);
|
||||
bool MakeDirExW(wchar_t *name);
|
||||
bool FileDeleteInner(char *name);
|
||||
bool FileDeleteInnerW(wchar_t *name);
|
||||
bool FileDelete(char *name);
|
||||
bool FileDeleteW(wchar_t *name);
|
||||
bool FileSeek(IO *o, UINT mode, int offset);
|
||||
UINT FileSize(IO *o);
|
||||
UINT64 FileSize64(IO *o);
|
||||
UINT FileSizeEx(char *name);
|
||||
UINT FileSizeExW(wchar_t *name);
|
||||
bool FileRead(IO *o, void *buf, UINT size);
|
||||
bool FileWrite(IO *o, void *buf, UINT size);
|
||||
void FileFlush(IO *o);
|
||||
void FileClose(IO *o);
|
||||
void FileCloseEx(IO *o, bool no_flush);
|
||||
void FileCloseAndDelete(IO *o);
|
||||
IO *FileCreateInner(char *name);
|
||||
IO *FileCreateInnerW(wchar_t *name);
|
||||
IO *FileCreate(char *name);
|
||||
IO *FileCreateW(wchar_t *name);
|
||||
bool FileWriteAll(char *name, void *data, UINT size);
|
||||
bool FileWriteAllW(wchar_t *name, void *data, UINT size);
|
||||
IO *FileOpenInner(char *name, bool write_mode, bool read_lock);
|
||||
IO *FileOpenInnerW(wchar_t *name, bool write_mode, bool read_lock);
|
||||
IO *FileOpen(char *name, bool write_mode);
|
||||
IO *FileOpenW(wchar_t *name, bool write_mode);
|
||||
IO *FileOpenEx(char *name, bool write_mode, bool read_lock);
|
||||
IO *FileOpenExW(wchar_t *name, bool write_mode, bool read_lock);
|
||||
void ConvertPath(char *path);
|
||||
void ConvertPathW(wchar_t *path);
|
||||
bool FileRenameInner(char *old_name, char *new_name);
|
||||
bool FileRenameInnerW(wchar_t *old_name, wchar_t *new_name);
|
||||
bool FileRename(char *old_name, char *new_name);
|
||||
bool FileRenameW(wchar_t *old_name, wchar_t *new_name);
|
||||
@ -324,10 +313,8 @@ void NormalizePath(char *dst, UINT size, char *src);
|
||||
void NormalizePathW(wchar_t *dst, UINT size, wchar_t *src);
|
||||
bool GetRelativePathW(wchar_t *dst, UINT size, wchar_t *fullpath, wchar_t *basepath);
|
||||
bool GetRelativePath(char *dst, UINT size, char *fullpath, char *basepath);
|
||||
TOKEN_LIST *ParseSplitedPath(char *path);
|
||||
UNI_TOKEN_LIST *ParseSplitedPathW(wchar_t *path);
|
||||
char *GetCurrentPathEnvStr();
|
||||
bool IsFileExistsInner(char *name);
|
||||
bool IsFileExistsInnerW(wchar_t *name);
|
||||
bool IsFileExists(char *name);
|
||||
bool IsFileExistsW(wchar_t *name);
|
||||
@ -342,7 +329,6 @@ void GetDirNameFromFilePathW(wchar_t *dst, UINT size, wchar_t *filepath);
|
||||
void GetFileNameFromFilePath(char *dst, UINT size, char *filepath);
|
||||
void GetFileNameFromFilePathW(wchar_t *dst, UINT size, wchar_t *filepath);
|
||||
void MakeSafeFileName(char *dst, UINT size, char *src);
|
||||
void MakeSafeFileNameW(wchar_t *dst, UINT size, wchar_t *src);
|
||||
void InitGetExeName(char *arg);
|
||||
void UnixGetExeNameW(wchar_t *name, UINT size, wchar_t *arg);
|
||||
void GetExeName(char *name, UINT size);
|
||||
@ -356,7 +342,6 @@ void FreeHamcore();
|
||||
BUF *ReadHamcore(char *name);
|
||||
BUF *ReadHamcoreW(wchar_t *filename);
|
||||
void SafeFileName(char *name);
|
||||
void SafeFileNameW(wchar_t *name);
|
||||
void UniSafeFileName(wchar_t *name);
|
||||
DIRLIST *EnumDir(char *dirname);
|
||||
DIRLIST *EnumDirW(wchar_t *dirname);
|
||||
@ -368,19 +353,13 @@ void EnumDirWithSubDirsMain(ENUM_DIR_WITH_SUB_DATA *d, wchar_t *dirname);
|
||||
void FreeDir(DIRLIST *d);
|
||||
int CompareDirListByName(void *p1, void *p2);
|
||||
bool GetDiskFree(char *path, UINT64 *free_size, UINT64 *used_size, UINT64 *total_size);
|
||||
bool GetDiskFreeW(wchar_t *path, UINT64 *free_size, UINT64 *used_size, UINT64 *total_size);
|
||||
void ConvertSafeFileName(char *dst, UINT size, char *src);
|
||||
void ConvertSafeFileNameW(wchar_t *dst, UINT size, wchar_t *src);
|
||||
bool FileReplaceRename(char *old_name, char *new_name);
|
||||
bool FileReplaceRenameW(wchar_t *old_name, wchar_t *new_name);
|
||||
bool IsFile(char *name);
|
||||
bool IsFileW(wchar_t *name);
|
||||
void GetCurrentDirW(wchar_t *name, UINT size);
|
||||
void GetCurrentDir(char *name, UINT size);
|
||||
bool SaveFileW(wchar_t *name, void *data, UINT size);
|
||||
bool SaveFile(char *name, void *data, UINT size);
|
||||
bool IsFileWriteLockedW(wchar_t *name);
|
||||
bool IsFileWriteLocked(char *name);
|
||||
bool IsInLines(BUF *buf, char *str, bool instr);
|
||||
bool IsInLinesFile(wchar_t *filename, char *str, bool instr);
|
||||
|
||||
|
Reference in New Issue
Block a user