zcancmder_v2
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
285 B

  1. #pragma once
  2. #include <stdint.h>
  3. namespace iflytop {
  4. typedef struct {
  5. const char* name;
  6. int32_t index;
  7. } reg_index_table_iterm_t;
  8. void reg_index_table_get(reg_index_table_iterm_t** table, int32_t* size);
  9. int32_t str_to_reg_index(const char* val);
  10. } // namespace iflytop