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.
20 #ifndef __GMODULE_WSD_H__
21 #define __GMODULE_WSD_H__
23 #if (defined(__SYMBIAN32__) && (defined(__WINSCW__) || defined(__WINS__)))
26 #include <sys/cdefs.h>
29 /* -------------------------- MACRO DEFINATIONS ----------------------*/
31 #define EMULATOR (defined(__SYMBIAN32__) && (defined(__WINSCW__) || defined(__WINS__)))
34 #define VARIABLE_NAME(var,filename) s_##filename##_##var
36 #define FUNCTION_NAME(var,filename) _s_##filename##_##var
38 #define VARIABLE_DECL(var,filename,datatype)\
39 datatype VARIABLE_NAME(var,filename);
41 #define RETURN_VAL(var,filename) (Gmodule_ImpurePtr()->VARIABLE_NAME(var,filename))
43 #define PLS(var,filename,type) \
44 type *_s_##filename##_##var() \
46 return &RETURN_VAL(var,filename);\
48 /* -------------------------- END MACRO DEFINATIONS ----------------------*/
53 VARIABLE_DECL(modules,gmodule,GModule *)
54 VARIABLE_DECL(main_module,gmodule,GModule *)
55 VARIABLE_DECL(module_error_private,gmodule,GStaticPrivate)
56 VARIABLE_DECL(g_module_global_lock,gmodule,GStaticRecMutex)
57 VARIABLE_DECL(module_debug_initialized,gmodule,gboolean)
58 VARIABLE_DECL(module_debug_flags,gmodule,guint)
62 struct global_struct *Gmodule_ImpurePtr();
66 #endif /* __GMODULE_WSD_H__ */