From 35d36fc17dbda85f89e5e109d6183458336323e9 Mon Sep 17 00:00:00 2001 From: Vadim Revyakin Date: Tue, 16 Jan 2007 13:47:51 +0000 Subject: serialization with several name spaces and attributes. SER_STRUCT define improved --- examples/win32_service.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/win32_service.c') diff --git a/examples/win32_service.c b/examples/win32_service.c index b6ac252..279e6a0 100644 --- a/examples/win32_service.c +++ b/examples/win32_service.c @@ -107,7 +107,7 @@ struct __CIM_Servie }; typedef struct __CIM_Servie CIM_Servie; -SER_START_ITEMS("CIM_Servie", CIM_Servie) +SER_START_ITEMS(CIM_Servie) SER_BOOL("AcceptPause", 1), SER_BOOL("AcceptStop", 1), SER_STR("Caption", 1), @@ -133,7 +133,7 @@ SER_STR("SystemCreationClassName", 1), SER_STR("SystemName", 1), SER_UINT32("TagId", 1), SER_UINT32("WaitHint", 1), -SER_END_ITEMS("CIM_Servie", CIM_Servie); +SER_END_ITEMS(CIM_Servie); static char *endpoint = NULL; char listall = 0; -- cgit