From 57c3eb29b22ead42cd29925a5486508dec4fb076 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BA=91=E9=A3=8E?= Date: Fri, 12 Oct 2012 14:06:24 +0800 Subject: [PATCH] add localcast.h --- service-src/localcast.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 service-src/localcast.h diff --git a/service-src/localcast.h b/service-src/localcast.h new file mode 100644 index 00000000..f66ab0b2 --- /dev/null +++ b/service-src/localcast.h @@ -0,0 +1,13 @@ +#ifndef SKYNET_LOCAL_CAST_H +#define SKYNET_LOCAL_CAST_H + +#include + +struct localcast { + int n; + const uint32_t * group; + void *msg; + size_t sz; +}; + +#endif