1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/ofdbus/dbus-glib/dbus/libdbus_glib_wsd_macros.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,65 @@
1.4 +/*
1.5 +* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
1.6 +* All rights reserved.
1.7 +* This component and the accompanying materials are made available
1.8 +* under the terms of "Eclipse Public License v1.0"
1.9 +* which accompanies this distribution, and is available
1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +*
1.12 +* Initial Contributors:
1.13 +* Nokia Corporation - initial contribution.
1.14 +*
1.15 +* Contributors:
1.16 +*
1.17 +* Description:
1.18 +*
1.19 +*/
1.20 +
1.21 +
1.22 +
1.23 +
1.24 +#ifndef _LIBDBUS_GLIB_WSD_DEFS_H_
1.25 +#define _LIBDBUS_GLIB_WSD_DEFS_H_
1.26 +
1.27 +#if (defined(__SYMBIAN32__) && (defined(__WINSCW__) || defined(__WINS__)))
1.28 +#if EMULATOR
1.29 +#undef EMULATOR
1.30 +#endif
1.31 +#ifdef GET_DBUS_WSD_VAR_NAME
1.32 +#undef GET_DBUS_WSD_VAR_NAME
1.33 +#endif
1.34 +
1.35 +#define EMULATOR (defined(__SYMBIAN32__) && (defined(__WINSCW__) || defined(__WINS__)))
1.36 +#define GET_DBUS_WSD_VAR_NAME(var,filename,prefix) _##prefix##_##filename##_##var
1.37 +
1.38 +#define RETURN_WSD_VAR(var,filename,prefix) (libdbus_glib_ImpurePtr()->GET_DBUS_WSD_VAR_NAME(var,filename,prefix))
1.39 +
1.40 +#define GET_WSD_VAR_FROM_TLS(var,filename,type,prefix)\
1.41 +type *_##prefix##_##filename##_##var()\
1.42 +{\
1.43 + return (&RETURN_WSD_VAR(var,filename,prefix));\
1.44 +}
1.45 +
1.46 +#define GET_WSD_ARRAY_FROM_TLS(var,filename,type,prefix)\
1.47 +type *_##prefix##_##filename##_##var()\
1.48 +{\
1.49 + return (RETURN_WSD_VAR(var,filename,prefix));\
1.50 +}
1.51 +
1.52 +#define VARIABLE_DECL(var,varprefix,filename,datatype)\
1.53 +datatype GET_DBUS_WSD_VAR_NAME(var,filename,varprefix);
1.54 +
1.55 +#define VARIABLE_DECL_ARRAY(var,prefix,filename,datatype,size) \
1.56 +datatype GET_DBUS_WSD_VAR_NAME(var,filename,prefix)[size];
1.57 +
1.58 +
1.59 +#define GET_STATIC_VAR_FROM_TLS(var,filename,type) GET_WSD_VAR_FROM_TLS(var,filename,type,s)
1.60 +
1.61 +#define GET_GLOBAL_VAR_FROM_TLS(var,filename,type) GET_WSD_VAR_FROM_TLS(var,filename,type,g)
1.62 +
1.63 +#define GET_STATIC_ARRAY_FROM_TLS(var,filename,type) GET_WSD_ARRAY_FROM_TLS(var,filename,type,s)
1.64 +
1.65 +#define GET_GLOBAL_ARRAY_FROM_TLS(var,filename,type) GET_WSD_ARRAY_FROM_TLS(var,filename,type,g)
1.66 +
1.67 +#endif
1.68 +#endif