From 254ee6f47eebfc00462c10756a92066e82cc1a96 Mon Sep 17 00:00:00 2001 From: Andrew Branson Date: Tue, 21 Jun 2011 15:46:02 +0200 Subject: Initial commit --- source/idls/c2kernel/CommonTypes.idl | 42 ++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100755 source/idls/c2kernel/CommonTypes.idl (limited to 'source/idls/c2kernel/CommonTypes.idl') diff --git a/source/idls/c2kernel/CommonTypes.idl b/source/idls/c2kernel/CommonTypes.idl new file mode 100755 index 0000000..93395eb --- /dev/null +++ b/source/idls/c2kernel/CommonTypes.idl @@ -0,0 +1,42 @@ +#ifndef __com_CommonTypes_Idl__ +#define __com_CommonTypes_Idl__ + +/* + * Copyright (C) 2001 CERN - European Organization for Nuclear Research + * All rights reserved. + * + * @author $Author: abranson $ $Date: 2004/01/21 16:17:18 $ + * @version $Revision: 1.24 $ + */ + +#include + +#pragma prefix "c2kernel.com" + +module common +{ + + /************************************************************************** + * Describes the time by year, month, day, hour, minute and second + * in Greenwich Mean Time (GMT) so it also describes the timezone by + * providing the offset from GMT in seconds. + * + * @version 1.0 + * @author kovax + **************************************************************************/ + struct GTimeStamp + { + long mYear; + long mMonth; + long mDay; + long mHour; + long mMinute; + long mSecond; + long mTimeOffset; //in seconds + }; + + + +}; //end of module common + +#endif -- cgit v1.2.3