2026-03-10 19:12:14 +00:00
|
|
|
#ifndef XPCG_BACKEND_H_
|
|
|
|
|
#define XPCG_BACKEND_H_
|
2026-02-26 19:44:21 +00:00
|
|
|
|
|
|
|
|
struct interface_definition;
|
|
|
|
|
|
|
|
|
|
struct backend {
|
|
|
|
|
const char *b_name;
|
|
|
|
|
int (*b_emit)(const struct interface_definition *);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
extern const struct backend *c_mpc_backend(void);
|
|
|
|
|
|
|
|
|
|
#endif
|