rjw | 1f88458 | 2022-01-06 17:20:42 +0800 | [diff] [blame^] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
2 | #ifndef __PERF_SUBCMD_CONFIG_H | ||||
3 | #define __PERF_SUBCMD_CONFIG_H | ||||
4 | |||||
5 | struct subcmd_config { | ||||
6 | const char *exec_name; | ||||
7 | const char *prefix; | ||||
8 | const char *exec_path; | ||||
9 | const char *exec_path_env; | ||||
10 | const char *pager_env; | ||||
11 | }; | ||||
12 | |||||
13 | extern struct subcmd_config subcmd_config; | ||||
14 | |||||
15 | #endif /* __PERF_SUBCMD_CONFIG_H */ |