change type of rule_id, object_id, item_id from (long long) to (uuid_t)

just compile libmaatframe.so, without modifing about test case
This commit is contained in:
root
2024-09-20 11:20:21 +00:00
parent 20de47c873
commit fc99675b40
40 changed files with 972 additions and 934 deletions

View File

@@ -24,6 +24,7 @@ extern "C"
#endif
#include <stddef.h>
#include <uuid/uuid.h>
#define MAX_ITEMS_PER_BOOL_EXPR 8
@@ -37,7 +38,7 @@ extern "C"
/* At least one item's negate_option should be 0. */
struct bool_expr
{
unsigned long long expr_id;
uuid_t expr_uuid;
void *user_tag;
size_t item_num;
struct bool_item items[MAX_ITEMS_PER_BOOL_EXPR];
@@ -45,7 +46,7 @@ extern "C"
struct bool_expr_match
{
unsigned long long expr_id;
uuid_t expr_uuid;
void *user_tag;
};