diff options
author | jsorg71 <jsorg71> | 2006-10-27 04:14:04 +0000 |
---|---|---|
committer | jsorg71 <jsorg71> | 2006-10-27 04:14:04 +0000 |
commit | bd252214a3b0cfe3ddcfb09c2280e5a621789656 (patch) | |
tree | b04d4866789345564c9e640af7c680364a692c31 /common/os_calls.h | |
parent | 5dfa4e3f39bc31c4f93c21cfa7fb64cc5cd6e049 (diff) | |
download | xrdp-proprietary-bd252214a3b0cfe3ddcfb09c2280e5a621789656.tar.gz xrdp-proprietary-bd252214a3b0cfe3ddcfb09c2280e5a621789656.zip |
added g_create_dir, g_directory_exist, g_remove_dir, and g_chmod
Diffstat (limited to 'common/os_calls.h')
-rw-r--r-- | common/os_calls.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/common/os_calls.h b/common/os_calls.h index d8eaeb3a..ce015b8f 100644 --- a/common/os_calls.h +++ b/common/os_calls.h @@ -100,6 +100,8 @@ g_file_lock(int fd, int start, int len); int g_set_file_rights(char* filename, int read, int write); int +g_chmod(char* filename, int flags); +int g_mkdir(char* dirname); char* g_get_current_dir(char* dirname, int maxlen); @@ -108,6 +110,12 @@ g_set_current_dir(char* dirname); int g_file_exist(char* filename); int +g_directory_exist(char* dirname); +int +g_create_dir(char* dirname); +int +g_remove_dir(char* dirname); +int g_file_delete(char* filename); int g_strlen(char* text); |