12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- #ifndef _CPUSVN_HELPER_H_
- #define _CPUSVN_HELPER_H_
- #define MAX_PATH 260
- #define UPGRADE "-upgrade"
- #define DOWNGRADE "-downgrade"
- #define RESET "-reset"
- #define HELP "-help"
- typedef enum _action_t
- {
- ACTION_RESET,
- ACTION_UPGRADE,
- ACTION_DOWNGRADE
- } action_t;
- #define USAGE \
- "Usage: sgx_config_cpusvn <command>\n" \
- "command:\n" \
- " -upgrade: Simulate CPUSVN upgrade\n"\
- " -downgrade: Simulate CPUSVN downgrade\n" \
- " -reset: Restore CPUSVN to the default value\n" \
- " -help: Print this help message\n"
- #endif
|