sl@0: // Copyright (c) 1998-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 the License "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: // e32\include\win32crt.h sl@0: // sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @internalTechnology sl@0: */ sl@0: sl@0: typedef void (__cdecl *_PVFV)(void); sl@0: typedef void* HANDLE; sl@0: sl@0: sl@0: // sl@0: // Static construction / destruction depends on compiler sl@0: // sl@0: sl@0: // GCC creates two lists of functions to call, __CTOR_LIST__ and __DTOR_LIST__ sl@0: #if defined(__GCC32__) sl@0: typedef void (*PFV)(); sl@0: extern PFV __CTOR_LIST__[]; sl@0: extern PFV __DTOR_LIST__[]; sl@0: static inline void constructStatics() sl@0: { sl@0: TUint _i=1; sl@0: while (__CTOR_LIST__[_i]) sl@0: (*__CTOR_LIST__[_i++])(); sl@0: } sl@0: static inline void destroyStatics() sl@0: { sl@0: TUint _i=1; sl@0: while (__DTOR_LIST__[_i]) sl@0: (*__DTOR_LIST__[_i++])(); sl@0: } sl@0: sl@0: // VC puts constructor/destructor function pointers in specially-named sections sl@0: #else sl@0: #pragma data_seg(".CRT$XIA") sl@0: _PVFV __xi_a[] = { NULL }; sl@0: #pragma data_seg(".CRT$XIZ") sl@0: _PVFV __xi_z[] = { NULL }; sl@0: #pragma data_seg(".CRT$XCA") sl@0: _PVFV __xc_a[] = { NULL }; sl@0: #pragma data_seg(".CRT$XCZ") sl@0: _PVFV __xc_z[] = { NULL }; sl@0: #pragma data_seg(".CRT$XPA") sl@0: _PVFV __xp_a[] = { NULL }; sl@0: #pragma data_seg(".CRT$XPZ") sl@0: _PVFV __xp_z[] = { NULL }; sl@0: #pragma data_seg(".CRT$XTA") sl@0: _PVFV __xt_a[] = { NULL }; sl@0: #pragma data_seg(".CRT$XTZ") sl@0: _PVFV __xt_z[] = { NULL }; sl@0: #pragma data_seg() /* reset */ sl@0: LOCAL_C void invokeTable(_PVFV *aStart,_PVFV *aEnd) sl@0: { sl@0: while (aStart