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.
23 #include "gmodule_wsd.h"
29 #include <pls.h> // For emulator WSD API
30 const TUid KLibgmoduleUid3 = {0x10281F3B}; // This is the UID of the library
34 int InitializeWsd(struct global_struct* g)
36 memset(g,0,sizeof(struct global_struct));
38 GStaticRecMutex temp_init_mutex = G_STATIC_REC_MUTEX_INIT;
39 memcpy(&(g->VARIABLE_NAME(g_module_global_lock, gmodule)), &temp_init_mutex, sizeof(GStaticMutex));
43 struct global_struct *Gmodule_ImpurePtr()
45 #if defined(__WINSCW__) || defined(__WINS__)
47 // Access the PLS of this process
48 struct global_struct* p = Pls<struct global_struct>(KLibgmoduleUid3, &InitializeWsd);