summaryrefslogtreecommitdiff
path: root/platform/android/file_access_android.h
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2019-04-23 17:39:23 +0200
committerGitHub <noreply@github.com>2019-04-23 17:39:23 +0200
commit6098a7f1914f64c77d689f54d5432095911b744f (patch)
treebf07da3b3177f3d104ecb5a66a7dc24b207fb08a /platform/android/file_access_android.h
parentb0da7b66ce278179eedd0e21dae1d84ed3f4459d (diff)
parentdd03dcbd5a1d4a23d4fb3aa41da0c91fe2c5eda5 (diff)
Merge pull request #27781 from reduz/new_android_export
Android now (optionally) builds the template when exporting
Diffstat (limited to 'platform/android/file_access_android.h')
-rw-r--r--platform/android/file_access_android.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/platform/android/file_access_android.h b/platform/android/file_access_android.h
index f8d46ea5d2..b8e78627ec 100644
--- a/platform/android/file_access_android.h
+++ b/platform/android/file_access_android.h
@@ -70,6 +70,8 @@ public:
virtual bool file_exists(const String &p_path); ///< return true if a file exists
virtual uint64_t _get_modified_time(const String &p_file) { return 0; }
+ virtual uint32_t _get_unix_permissions(const String &p_file) { return 0; }
+ virtual Error _set_unix_permissions(const String &p_file, uint32_t p_permissions) { return FAILED; }
//static void make_default();