Update contrib.
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 __GLIBBACKEND_WSD_H__
22 #define __GLIBBACKEND_WSD_H__
24 #if (defined(__SYMBIAN32__) && (defined(__WINSCW__) || defined(__WINS__)))
28 /* ---------------------- MACRO DEFINATIONS ---------------------------*/
30 #define EMULATOR (defined(__SYMBIAN32__) && (defined(__WINSCW__) || defined(__WINS__)))
33 #define VARIABLE_NAME(var,filename) s_##filename##_##var
35 #define FUNCTION_NAME(var,filename) _s_##filename##_##var
37 #define VARIABLE_DECL(var,filename,datatype)\
38 datatype VARIABLE_NAME(var,filename);
40 #define RETURN_VAL(var,filename) (Glibbackend_ImpurePtr()->VARIABLE_NAME(var,filename))
42 #define PLS(var,filename,type) \
43 type *FUNCTION_NAME(var,filename)() \
45 return &RETURN_VAL(var,filename);\
47 /* ---------------------- END MACRO DEFINATIONS ---------------------------*/
51 VARIABLE_DECL(key,lowmem,pthread_key_t)
52 VARIABLE_DECL(key_once,lowmem,pthread_once_t)
56 struct global_struct *Glibbackend_ImpurePtr();
59 #endif /* __GLIBBACKEND_WSD_H__ */