toolchain: xpcg: replace bluelib with fx

This commit is contained in:
2026-03-21 10:33:39 +00:00
parent 68ae449731
commit ffc2ed735e
15 changed files with 524 additions and 538 deletions

View File

@@ -1,23 +1,23 @@
#ifndef XPCG_MSG_H_
#define XPCG_MSG_H_
#include <blue/core/queue.h>
#include <fx/core/queue.h>
struct type;
struct msg_parameter {
char *p_name;
const struct type *p_type;
b_queue_entry p_entry;
fx_queue_entry p_entry;
};
struct msg_definition {
char *msg_name;
long long msg_id;
b_queue_entry msg_entry;
fx_queue_entry msg_entry;
b_queue msg_params;
b_queue msg_results;
fx_queue msg_params;
fx_queue msg_results;
};
extern struct msg_definition *msg_definition_create(