Files
skynet/service-src/localcast.h
2012-10-12 14:06:24 +08:00

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