~ubuntu-branches/ubuntu/precise/freerdp/precise-updates

« back to all changes in this revision

Viewing changes to include/freerdp/utils/file.h

  • Committer: Package Import Robot
  • Author(s): Otavio Salvador, Jeremy Bicha
  • Date: 2012-02-11 10:34:05 UTC
  • mfrom: (1.1.7) (9.1.3 sid)
  • Revision ID: package-import@ubuntu.com-20120211103405-mk0gjhjn70eeyxul
Tags: 1.0.1-1
[ Jeremy Bicha ]
* New upstream release. Closes: #659332.
* Updated symbols

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#define __FILE_UTILS_H
22
22
 
23
23
#include <freerdp/api.h>
 
24
#include <freerdp/types.h>
 
25
#include <freerdp/settings.h>
24
26
 
25
27
FREERDP_API void freerdp_mkdir(char* path);
 
28
FREERDP_API boolean freerdp_check_file_exists(char* file);
 
29
FREERDP_API char* freerdp_get_home_path(rdpSettings* settings);
 
30
FREERDP_API char* freerdp_get_config_path(rdpSettings* settings);
 
31
FREERDP_API char* freerdp_get_current_path(rdpSettings* settings);
 
32
FREERDP_API char* freerdp_construct_path(char* base_path, char* relative_path);
 
33
FREERDP_API char* freerdp_append_shared_library_suffix(char* file_path);
 
34
FREERDP_API char* freerdp_get_parent_path(char* base_path, int depth);
 
35
FREERDP_API boolean freerdp_path_contains_separator(char* path);
 
36
FREERDP_API boolean freerdp_detect_development_mode(rdpSettings* settings);
 
37
FREERDP_API void freerdp_detect_paths(rdpSettings* settings);
26
38
 
27
39
#endif /* __FILE_UTILS_H */