| /* | |
| * instance_info.h | |
| * | |
| * Instance monitor service informations. | |
| * | |
| * Author : lb | |
| * Date : 2024/6/12 16:56:22 | |
| */ | |
| #ifndef _INSTANCE_INFO_H | |
| #define _INSTANCE_INFO_H | |
| #include "mbtk_type.h" | |
| #define INSTANCE_NUM_MAX 10 | |
| typedef struct { | |
| char ins_name[64]; | |
| char ins_cmd[128]; | |
| int ins_pid; | |
| } instance_info_t; | |
| #endif /* _INSTANCE_INFO_H */ |