subcmd-config.h 291 B

123456789101112131415
  1. #ifndef __PERF_SUBCMD_CONFIG_H
  2. #define __PERF_SUBCMD_CONFIG_H
  3. struct subcmd_config {
  4. const char *exec_name;
  5. const char *prefix;
  6. const char *exec_path;
  7. const char *exec_path_env;
  8. const char *pager_env;
  9. };
  10. extern struct subcmd_config subcmd_config;
  11. #endif /* __PERF_SUBCMD_CONFIG_H */