sl@0: // Copyright (c) 1995-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\e32svr.h sl@0: // sl@0: // WARNING: This file contains some APIs which are internal and are subject sl@0: // to change without notice. Such APIs should therefore not be used sl@0: // outside the Kernel and Hardware Services package. sl@0: // sl@0: sl@0: #ifndef __E32SVR_H__ sl@0: #define __E32SVR_H__ sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: /** sl@0: @internalComponent sl@0: @removed sl@0: */ sl@0: enum TBlockType {EBlocked,EUnBlocked,ERelease}; sl@0: sl@0: /** sl@0: A collection of static functions that are intended for internal use only, sl@0: except for AddEvent. sl@0: @see UserSvr::AddEvent() sl@0: @publishedPartner sl@0: @released sl@0: */ sl@0: class UserSvr sl@0: { sl@0: public: sl@0: IMPORT_C static void CaptureEventHook(); /**< @internalAll */ sl@0: IMPORT_C static void ReleaseEventHook(); /**< @internalAll */ sl@0: IMPORT_C static void RequestEvent(TRawEventBuf &anEvent,TRequestStatus &aStatus); /**< @internalAll */ sl@0: IMPORT_C static void RequestEventCancel(); /**< @internalAll */ sl@0: IMPORT_C static TInt AddEvent(const TRawEvent& anEvent); sl@0: IMPORT_C static void ScreenInfo(TDes8& anInfo); /**< @internalAll */ sl@0: IMPORT_C static TInt DllSetTls(TInt aHandle, TAny *aPtr); /**<@internalAll */ sl@0: IMPORT_C static TInt DllSetTls(TInt aHandle, TInt aDllUid, TAny *aPtr); /**< @internalComponent */ sl@0: IMPORT_C static TAny *DllTls(TInt aHandle); /**< @internalAll */ sl@0: IMPORT_C static TAny *DllTls(TInt aHandle, TInt aDllUid); /**< @internalComponent */ sl@0: IMPORT_C static void DllFreeTls(TInt aHandle); /**< @internalAll */ sl@0: IMPORT_C static void DllFileName(TInt aHandle, TDes &aFileName); /**< @internalAll */ sl@0: IMPORT_C static void FsRegisterThread(); /**< @internalAll */ sl@0: IMPORT_C static void RegisterTrustedChunk(TInt aHandle);/**< @internalComponent */ sl@0: IMPORT_C static void WsRegisterThread(); /**< @internalAll */ sl@0: IMPORT_C static TBool TestBootSequence(); /**< @internalAll */ sl@0: IMPORT_C static void WsRegisterSwitchOnScreenHandling(TBool aState); /**< @internalAll */ sl@0: IMPORT_C static void WsSwitchOnScreen(); /**< @internalAll */ sl@0: IMPORT_C static TInt ChangeLocale(const TDesC& aLocaleDllName); /**< @internalAll */ sl@0: IMPORT_C static TInt ResetMachine(TMachineStartupType aType); /**< @internalAll */ sl@0: IMPORT_C static void UnlockRamDrive(); /**< @internalAll */ sl@0: IMPORT_C static void LockRamDrive(); /**< @internalAll */ sl@0: IMPORT_C static TUint32 RomRootDirectoryAddress(); /**< @internalAll */ sl@0: IMPORT_C static TInt ExecuteInSupervisorMode(TSupervisorFunction aFunction, TAny* aParameter); /**< @internalAll */ sl@0: IMPORT_C static TUint32 RomHeaderAddress(); /**< @internalAll */ sl@0: IMPORT_C static TUint32 DebugMask(); /**< @internalAll */ //Return the kernel debug mask 0 sl@0: IMPORT_C static TUint32 DebugMask(TUint aIndex); /**<@internalAll */ // Return the kernel debug mask sl@0: IMPORT_C static TInt HalFunction(TInt aGroup, TInt aFunction, TAny* a1, TAny* a2); /**<@internalAll */ sl@0: IMPORT_C static TInt HalFunction(TInt aGroup, TInt aFunction, TAny* a1, TAny* a2, TInt aDeviceNumber); /**<@internalAll */ sl@0: IMPORT_C static TInt HalGet(TInt,TAny*); /**<@internalAll */ // redundant - only here for BC sl@0: IMPORT_C static TInt HalSet(TInt,TAny*); /**<@internalAll */ // redundant - only here for BC sl@0: IMPORT_C static TInt SetMemoryThresholds(TInt aLowThreshold, TInt aGoodThreshold); /**<@internalAll */ sl@0: IMPORT_C static TBool IpcV1Available(); /**<@internalAll */ sl@0: IMPORT_C static TLinAddr ExceptionDescriptor(TLinAddr aCodeAddress); /**< @internalTechnology */ sl@0: IMPORT_C static TInt LocalePropertiesSetDefaults(); /**< @internalTechnology */ sl@0: }; sl@0: sl@0: #endif sl@0: