sl@0: /* sl@0: * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * sl@0: */ sl@0: sl@0: sl@0: sl@0: sl@0: #ifndef _LIBDBUS_GLIB_WSD_DEFS_H_ sl@0: #define _LIBDBUS_GLIB_WSD_DEFS_H_ sl@0: sl@0: #if (defined(__SYMBIAN32__) && (defined(__WINSCW__) || defined(__WINS__))) sl@0: #if EMULATOR sl@0: #undef EMULATOR sl@0: #endif sl@0: #ifdef GET_DBUS_WSD_VAR_NAME sl@0: #undef GET_DBUS_WSD_VAR_NAME sl@0: #endif sl@0: sl@0: #define EMULATOR (defined(__SYMBIAN32__) && (defined(__WINSCW__) || defined(__WINS__))) sl@0: #define GET_DBUS_WSD_VAR_NAME(var,filename,prefix) _##prefix##_##filename##_##var sl@0: sl@0: #define RETURN_WSD_VAR(var,filename,prefix) (libdbus_glib_ImpurePtr()->GET_DBUS_WSD_VAR_NAME(var,filename,prefix)) sl@0: sl@0: #define GET_WSD_VAR_FROM_TLS(var,filename,type,prefix)\ sl@0: type *_##prefix##_##filename##_##var()\ sl@0: {\ sl@0: return (&RETURN_WSD_VAR(var,filename,prefix));\ sl@0: } sl@0: sl@0: #define GET_WSD_ARRAY_FROM_TLS(var,filename,type,prefix)\ sl@0: type *_##prefix##_##filename##_##var()\ sl@0: {\ sl@0: return (RETURN_WSD_VAR(var,filename,prefix));\ sl@0: } sl@0: sl@0: #define VARIABLE_DECL(var,varprefix,filename,datatype)\ sl@0: datatype GET_DBUS_WSD_VAR_NAME(var,filename,varprefix); sl@0: sl@0: #define VARIABLE_DECL_ARRAY(var,prefix,filename,datatype,size) \ sl@0: datatype GET_DBUS_WSD_VAR_NAME(var,filename,prefix)[size]; sl@0: sl@0: sl@0: #define GET_STATIC_VAR_FROM_TLS(var,filename,type) GET_WSD_VAR_FROM_TLS(var,filename,type,s) sl@0: sl@0: #define GET_GLOBAL_VAR_FROM_TLS(var,filename,type) GET_WSD_VAR_FROM_TLS(var,filename,type,g) sl@0: sl@0: #define GET_STATIC_ARRAY_FROM_TLS(var,filename,type) GET_WSD_ARRAY_FROM_TLS(var,filename,type,s) sl@0: sl@0: #define GET_GLOBAL_ARRAY_FROM_TLS(var,filename,type) GET_WSD_ARRAY_FROM_TLS(var,filename,type,g) sl@0: sl@0: #endif sl@0: #endif