mirror of
https://github.com/cloudwu/skynet.git
synced 2026-07-23 03:23:08 +00:00
14 lines
165 B
C
14 lines
165 B
C
#ifndef SKYNET_LOCAL_CAST_H
|
|
#define SKYNET_LOCAL_CAST_H
|
|
|
|
#include <stdint.h>
|
|
|
|
struct localcast {
|
|
int n;
|
|
const uint32_t * group;
|
|
void *msg;
|
|
size_t sz;
|
|
};
|
|
|
|
#endif
|