| | |
| | | #include <stdint.h> |
| | | #include "std_target.h" |
| | | |
| | | // struct image |
| | | struct stimg{ |
| | | uint64_t id; |
| | | unsigned char* data; |
| | |
| | | ////////////////////////////////////////////// |
| | | // sdk result |
| | | |
| | | // struct rect |
| | | struct strc{ |
| | | int32_t left; |
| | | int32_t top; |
| | |
| | | int32_t bottom; |
| | | }; |
| | | |
| | | // struct target from analysis |
| | | struct sttgt{ |
| | | uint64_t id; |
| | | char* type; |
| | |
| | | uint32_t attribute_size; |
| | | }; |
| | | |
| | | // struct sdk analysis run |
| | | struct stsdk{ |
| | | char* sdktype; |
| | | uint32_t sdktype_size; |
| | |
| | | struct sttgt* tgt; |
| | | }; |
| | | |
| | | // struct rule message for rule server |
| | | struct strule{ |
| | | char* handletrack; |
| | | uint32_t handletrack_size; |