First public contribution.
2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
21 #ifndef _LIBDBUS_GLIB_WSD_DEFS_H_
22 #define _LIBDBUS_GLIB_WSD_DEFS_H_
24 #if (defined(__SYMBIAN32__) && (defined(__WINSCW__) || defined(__WINS__)))
28 #ifdef GET_DBUS_WSD_VAR_NAME
29 #undef GET_DBUS_WSD_VAR_NAME
32 #define EMULATOR (defined(__SYMBIAN32__) && (defined(__WINSCW__) || defined(__WINS__)))
33 #define GET_DBUS_WSD_VAR_NAME(var,filename,prefix) _##prefix##_##filename##_##var
35 #define RETURN_WSD_VAR(var,filename,prefix) (libdbus_glib_ImpurePtr()->GET_DBUS_WSD_VAR_NAME(var,filename,prefix))
37 #define GET_WSD_VAR_FROM_TLS(var,filename,type,prefix)\
38 type *_##prefix##_##filename##_##var()\
40 return (&RETURN_WSD_VAR(var,filename,prefix));\
43 #define GET_WSD_ARRAY_FROM_TLS(var,filename,type,prefix)\
44 type *_##prefix##_##filename##_##var()\
46 return (RETURN_WSD_VAR(var,filename,prefix));\
49 #define VARIABLE_DECL(var,varprefix,filename,datatype)\
50 datatype GET_DBUS_WSD_VAR_NAME(var,filename,varprefix);
52 #define VARIABLE_DECL_ARRAY(var,prefix,filename,datatype,size) \
53 datatype GET_DBUS_WSD_VAR_NAME(var,filename,prefix)[size];
56 #define GET_STATIC_VAR_FROM_TLS(var,filename,type) GET_WSD_VAR_FROM_TLS(var,filename,type,s)
58 #define GET_GLOBAL_VAR_FROM_TLS(var,filename,type) GET_WSD_VAR_FROM_TLS(var,filename,type,g)
60 #define GET_STATIC_ARRAY_FROM_TLS(var,filename,type) GET_WSD_ARRAY_FROM_TLS(var,filename,type,s)
62 #define GET_GLOBAL_ARRAY_FROM_TLS(var,filename,type) GET_WSD_ARRAY_FROM_TLS(var,filename,type,g)