2023-06-07 00:04:53 -07:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2023-06-17 01:53:19 -07:00
|
|
|
#include "include/ztypes.h"
|
|
|
|
|
2023-06-07 08:24:10 -07:00
|
|
|
struct ZMessage {
|
|
|
|
uint64_t num_bytes;
|
2023-06-19 18:39:46 -07:00
|
|
|
void* data;
|
2023-06-07 08:24:10 -07:00
|
|
|
|
|
|
|
uint64_t num_caps;
|
2023-06-17 01:53:19 -07:00
|
|
|
z_cap_t* caps;
|
2023-06-07 08:24:10 -07:00
|
|
|
};
|