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
13 lines
285 B
#pragma once
|
|
#include <stdint.h>
|
|
|
|
namespace iflytop {
|
|
typedef struct {
|
|
const char* name;
|
|
int32_t index;
|
|
} reg_index_table_iterm_t;
|
|
|
|
void reg_index_table_get(reg_index_table_iterm_t** table, int32_t* size);
|
|
int32_t str_to_reg_index(const char* val);
|
|
|
|
} // namespace iflytop
|