acl  3.5.3.0
acl_process.h
浏览该文件的文档.
1 #ifndef ACL_PROCESS_INCLUDE_H
2 #define ACL_PROCESS_INCLUDE_H
3 
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7 
8 /**
9  * 程序运行过程中获得可执行程序存储于文件系统中的全路径
10  * @return {const char*} NULL: 无法获得; != NULL: 返回值即是程序在
11  * 文件系统上的存储全路径
12  */
13 ACL_API const char *acl_process_path(void);
14 
15 /**
16  * 程序运行过程中获得其运行路径
17  * @return {const char*} NULL: 无法获得; != NULL: 返回值即为程序的运行路径
18  */
19 ACL_API const char *acl_getcwd(void);
20 
21 #ifdef __cplusplus
22 }
23 #endif
24 
25 #endif
ACL_API const char * acl_process_path(void)
ACL_API const char * acl_getcwd(void)