diff options
| author | Pavel Roskin <plroskin@gmail.com> | 2017-03-12 09:35:00 -0700 |
|---|---|---|
| committer | jsorg71 <jay.sorg@gmail.com> | 2017-03-14 00:21:48 -0700 |
| commit | 6ed4c969f4d646a7751fe2da29ba94eddd3d6477 (patch) | |
| tree | 951c72b16a0be1a1cc8c77e6d2ecaa1f25f2bcd6 /common/file.h | |
| parent | 8be83473b72c926d3c056fd8a81965dbce0a0e5e (diff) | |
| download | xrdp-proprietary-6ed4c969f4d646a7751fe2da29ba94eddd3d6477.tar.gz xrdp-proprietary-6ed4c969f4d646a7751fe2da29ba94eddd3d6477.zip | |
Eliminate APP_CC and DEFAULT_CC
Diffstat (limited to 'common/file.h')
| -rw-r--r-- | common/file.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/common/file.h b/common/file.h index ec3bbcb1..8800e6a7 100644 --- a/common/file.h +++ b/common/file.h @@ -23,14 +23,14 @@ #include "arch.h" -int APP_CC +int file_read_sections(int fd, struct list* names); -int APP_CC +int file_by_name_read_sections(const char* file_name, struct list* names); -int APP_CC +int file_read_section(int fd, const char* section, struct list* names, struct list* values); -int APP_CC +int file_by_name_read_section(const char* file_name, const char* section, struct list* names, struct list* values); |
