add localcast.h

This commit is contained in:
云风
2012-10-12 14:06:24 +08:00
parent f3647338ce
commit 57c3eb29b2

13
service-src/localcast.h Normal file
View File

@@ -0,0 +1,13 @@
#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