about summary refs log tree commit diff stats
path: root/src/include/fileutils.h
diff options
context:
space:
mode:
authorYang Liu <liuyang22@iscas.ac.cn>2025-06-05 15:43:30 +0800
committerGitHub <noreply@github.com>2025-06-05 09:43:30 +0200
commite9242b884980187cb2090ae6a589e74da9613311 (patch)
treea1a5d294f133e63428a4cbef3e686e70dcdbb1ec /src/include/fileutils.h
parentc5755c8241177c2cc7d95709fa0f0ac42111d141 (diff)
downloadbox64-e9242b884980187cb2090ae6a589e74da9613311.tar.gz
box64-e9242b884980187cb2090ae6a589e74da9613311.zip
[WOW64] Added rcfile support (#2708)
* [WOW64] Fixed more compilation warnings

* [WOW64] Messing around with file APIs

* [WOW64] Added rcfile support

* [DOCS] Update rcfile usage on WowBox64
Diffstat (limited to 'src/include/fileutils.h')
-rw-r--r--src/include/fileutils.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/include/fileutils.h b/src/include/fileutils.h
index 858c6324..855eb8ff 100644
--- a/src/include/fileutils.h
+++ b/src/include/fileutils.h
@@ -3,13 +3,6 @@
 
 #include "pathcoll.h"
 
-#define IS_EXECUTABLE   (1<<0)
-#define IS_FILE         (1<<1)
-       
-
-// 0 : doesn't exist, 1: Does exist
-int FileExist(const char* filename, int flags);
-
 // find a file, using Path if needed, resolving symlinks
 char* ResolveFile(const char* filename, path_collection_t* paths);
 // find a file, using Path if needed, NOT resolving symlinks
@@ -23,9 +16,6 @@ int FileIsShell(const char* filename);
 // return temp folder (will return /tmp if nothing is correct)
 const char* GetTmpDir(void);
 
-// will lower case the string and return a copy. Nothing fancy here, just A..Z transformed to a..z, rest is untouched
-char* LowerCase(const char* s);
-
 #if defined(RPI) || defined(RK3399) || defined(RK3326)
 void sanitize_mojosetup_gtk_background(void);
 #endif