os/kernelhwsrv/kernel/eka/include/e32hal.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1995-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of the License "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// e32\include\e32hal.h
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __E32HAL_H__
sl@0
    19
#define __E32HAL_H__
sl@0
    20
#include <e32cmn.h>
sl@0
    21
#include <e32cmn_private.h>
sl@0
    22
sl@0
    23
/**
sl@0
    24
@publishedPartner
sl@0
    25
@deprecated No replacement.
sl@0
    26
*/ 
sl@0
    27
const TInt KMaxRomDevices=8;
sl@0
    28
sl@0
    29
sl@0
    30
sl@0
    31
sl@0
    32
/**
sl@0
    33
@publishedPartner
sl@0
    34
@released
sl@0
    35
sl@0
    36
Defines the calibration settings that can be restored by 
sl@0
    37
the digitiser's implementation of DDigitiser::RestoreXYInputCalibration.
sl@0
    38
sl@0
    39
See the digitiser template port in:
sl@0
    40
@code
sl@0
    41
...\template\template_variant\specific\xyin.cpp
sl@0
    42
@endcode
sl@0
    43
sl@0
    44
@see DDigitiser::RestoreXYInputCalibration()
sl@0
    45
*/ 
sl@0
    46
enum TDigitizerCalibrationType
sl@0
    47
    {
sl@0
    48
    EFactory, /**< Restore to factory settings. */
sl@0
    49
    ESaved    /**< Restore to saved settings.   */
sl@0
    50
    };
sl@0
    51
sl@0
    52
sl@0
    53
sl@0
    54
sl@0
    55
/**
sl@0
    56
@publishedPartner
sl@0
    57
@released
sl@0
    58
sl@0
    59
Defines the screen coordinates of the point touched during calibration.
sl@0
    60
sl@0
    61
An object of this type is passed, via a TPckgBuf, to the HAL handler
sl@0
    62
that deals with the HAL group function-id pair:
sl@0
    63
- EHalGroupDigitiser, EDigitiserHalSetXYInputCalibration
sl@0
    64
- EHalGroupDigitiser, EDigitiserHalCalibrationPoints
sl@0
    65
- EHalGroupDigitiser, EDigitiserHalRestoreXYInputCalibration
sl@0
    66
sl@0
    67
@see EDigitiserHalSetXYInputCalibration
sl@0
    68
@see EDigitiserHalCalibrationPoints
sl@0
    69
@see EDigitiserHalRestoreXYInputCalibration
sl@0
    70
@see TDigitiserHalFunction
sl@0
    71
@see EHalGroupDigitiser
sl@0
    72
@see TPckgBuf
sl@0
    73
*/ 
sl@0
    74
class TDigitizerCalibration
sl@0
    75
    {
sl@0
    76
public:
sl@0
    77
    TPoint iTl;  /**< Top left point.*/
sl@0
    78
    TPoint iBl;  /**< Bottom left point. */
sl@0
    79
    TPoint iTr;  /**< Top right point.*/
sl@0
    80
    TPoint iBr;  /**< Bottom right point.*/
sl@0
    81
    };
sl@0
    82
sl@0
    83
sl@0
    84
sl@0
    85
sl@0
    86
/**
sl@0
    87
@publishedPartner
sl@0
    88
@released
sl@0
    89
sl@0
    90
An enum that identifies the full set of keyboard types.
sl@0
    91
sl@0
    92
A variable of this type is defined and used in the TKeyboardInfoV01 struct. 
sl@0
    93
sl@0
    94
@see TKeyboardInfoV01::iKeyboardType.
sl@0
    95
*/ 
sl@0
    96
enum TKeyboard
sl@0
    97
	{
sl@0
    98
	EKeyboard_Keypad=1, /**< Keypad type*/
sl@0
    99
	EKeyboard_Full=2,   /**< Full keyboard type*/
sl@0
   100
	};
sl@0
   101
sl@0
   102
sl@0
   103
sl@0
   104
sl@0
   105
/**
sl@0
   106
@publishedPartner
sl@0
   107
@released
sl@0
   108
sl@0
   109
Encapsulates information about the keyboard.
sl@0
   110
sl@0
   111
NOTE that the information represented here is not used by Symbian OS, 
sl@0
   112
and exists to maintain binary compatibilty with older versions.
sl@0
   113
sl@0
   114
However, keyboard drivers that implement the HAL handler for
sl@0
   115
the EHalGroupKeyboard group still need to return a default object
sl@0
   116
of this type.
sl@0
   117
See the template port.
sl@0
   118
sl@0
   119
An object of this type is passed, via a TPckgBuf, to the HAL handler
sl@0
   120
that deals with the HAL group function-id pair:
sl@0
   121
- EHalGroupKeyboard, EKeyboardHalKeyboardInfo;
sl@0
   122
sl@0
   123
@see EKeyboardHalKeyboardInfo
sl@0
   124
@see TKeyboardHalFunction
sl@0
   125
@see EHalGroupKeyboard
sl@0
   126
@see TPckgBuf
sl@0
   127
*/ 
sl@0
   128
class TKeyboardInfoV01
sl@0
   129
	{
sl@0
   130
public:
sl@0
   131
    /**
sl@0
   132
    The number of device keys.
sl@0
   133
    
sl@0
   134
    NOTE that the information represented by this variable is not
sl@0
   135
    used by Symbian OS, and exists to maintain binary compatibility
sl@0
   136
    with older versions. 
sl@0
   137
    */
sl@0
   138
	TInt iDeviceKeys;
sl@0
   139
	
sl@0
   140
	
sl@0
   141
	/**
sl@0
   142
	The number of application keys.
sl@0
   143
	
sl@0
   144
	NOTE that the information represented by this variable is not
sl@0
   145
    used by Symbian OS, and exists to maintain binary compatibility
sl@0
   146
    with older versions. 
sl@0
   147
	*/
sl@0
   148
    TInt iAppsKeys;
sl@0
   149
    
sl@0
   150
    
sl@0
   151
    /**
sl@0
   152
    Defines the type of keyboard available as enumerated by
sl@0
   153
    the TKeyboard enum.
sl@0
   154
        
sl@0
   155
    NOTE that the information represented by this variable is not
sl@0
   156
    used by Symbian OS, and exists to maintain binary compatibility
sl@0
   157
    with older versions. 
sl@0
   158
            
sl@0
   159
    @see TKeyboard
sl@0
   160
    */
sl@0
   161
	TKeyboard iKeyboardType;
sl@0
   162
    };
sl@0
   163
    
sl@0
   164
    
sl@0
   165
    
sl@0
   166
    
sl@0
   167
/**
sl@0
   168
@publishedPartner
sl@0
   169
@released
sl@0
   170
sl@0
   171
Package buffer for a TKeyboardInfoV01 object.
sl@0
   172
sl@0
   173
@see TKeyboardInfoV01
sl@0
   174
*/ 
sl@0
   175
typedef TPckgBuf<TKeyboardInfoV01> TKeyboardInfoV01Buf;
sl@0
   176
sl@0
   177
sl@0
   178
sl@0
   179
sl@0
   180
/**
sl@0
   181
@publishedPartner
sl@0
   182
@released
sl@0
   183
sl@0
   184
Encapsulates information about the digitiser.
sl@0
   185
sl@0
   186
An object of this type is passed, via a TPckgBuf, to the HAL handler
sl@0
   187
that deals with the HAL group function-id pair:
sl@0
   188
- EHalGroupDigitiser, EDigitiserHalXYInfo;
sl@0
   189
sl@0
   190
@see EDigitiserHalXYInfo
sl@0
   191
@see TDigitiserHalFunction
sl@0
   192
@see EHalGroupDigitiser
sl@0
   193
@see TPckgBuf
sl@0
   194
*/ 
sl@0
   195
class TDigitiserInfoV01
sl@0
   196
	{
sl@0
   197
public:
sl@0
   198
	TPoint iOffsetToDisplay;/**< The offset in pixels from the digitiser usable area to the display area. */
sl@0
   199
	TSize iDigitiserSize;   /**< The width/height of the display in pixels as used by digitiser.*/
sl@0
   200
	};
sl@0
   201
	
sl@0
   202
	
sl@0
   203
/**
sl@0
   204
@publishedPartner
sl@0
   205
@released
sl@0
   206
Encapsulates extra information required by 3 dimensional pointing devices.
sl@0
   207
*/ 
sl@0
   208
class TDigitiserInfoV02 : public TDigitiserInfoV01
sl@0
   209
	{	
sl@0
   210
public :
sl@0
   211
	TInt iZRange;			/**< The maximum distance to screen a pointing device will be detected (settable).*/
sl@0
   212
	TUint8 iThetaSupported;	/**< A Boolean value that indicates if Theta polar angle detection (tilt) is supported.*/
sl@0
   213
	TUint8 iPhiSupported;	/**< A Boolean value that indicates if Phi polar angle detection (tilt) is supported.*/
sl@0
   214
	TUint8 iAlphaSupported;	/**< A Boolean value that indicates if rotation of the pointing device along its main axis is supported.*/
sl@0
   215
	TUint8 iPressureSupported; /**< A Boolean value that indicates if pressure applied on screen is supported.*/
sl@0
   216
	TInt iProximityStep;    /**<proximity resolution, e.g. proximity readings change in steps of 1, 5, 10, ... */
sl@0
   217
	TInt iMaxPressure;      /**< maximum pressure reading*/
sl@0
   218
	TInt iPressureStep;     /**< pressure resolution, */	
sl@0
   219
	TUint8 iMaxPointers;    /**< max number of multi-touch pointers supported by hardware/driver.*/ 
sl@0
   220
	TUint8 iNumberOfPointers;/**< Number of pointers it supports (settable).*/
sl@0
   221
	};
sl@0
   222
sl@0
   223
sl@0
   224
/**
sl@0
   225
@publishedPartner
sl@0
   226
@released
sl@0
   227
sl@0
   228
Package buffer for a TDigitiserInfoV01 object.
sl@0
   229
sl@0
   230
@see TDigitiserInfoV01
sl@0
   231
*/ 
sl@0
   232
typedef TPckgBuf<TDigitiserInfoV01> TDigitiserInfoV01Buf;
sl@0
   233
sl@0
   234
/**
sl@0
   235
@publishedPartner
sl@0
   236
@prototype
sl@0
   237
sl@0
   238
Package buffer for a TDigitiserInfoV02 object.
sl@0
   239
sl@0
   240
@see TDigitiserInfoV02
sl@0
   241
*/ 
sl@0
   242
typedef TPckgBuf<TDigitiserInfoV02> TDigitiserInfoV02Buf;
sl@0
   243
sl@0
   244
/**
sl@0
   245
@publishedPartner
sl@0
   246
@released
sl@0
   247
sl@0
   248
Encapsulates information about the mouse display characteristics.
sl@0
   249
sl@0
   250
An object of this type is passed, via a TPckgBuf, to the HAL handler
sl@0
   251
that deals with the HAL group function-id pair:
sl@0
   252
- EHalGroupMouse, EMouseHalMouseInfo;
sl@0
   253
sl@0
   254
@see EMouseHalMouseInfo
sl@0
   255
@see TMouseHalFunction
sl@0
   256
@see EHalGroupMouse
sl@0
   257
@see TPckgBuf
sl@0
   258
*/ 
sl@0
   259
class TMouseInfoV01
sl@0
   260
	{
sl@0
   261
public:
sl@0
   262
	TInt iMouseButtons;      /**< The number of mouse buttons.*/
sl@0
   263
	TPoint iOffsetToDisplay; /**< The offset in pixels from the mouse usable area to the display area.*/
sl@0
   264
	TSize iMouseAreaSize;    /**< The width/height of the display in pixels as used by the mouse.     */
sl@0
   265
	};
sl@0
   266
	
sl@0
   267
	
sl@0
   268
	
sl@0
   269
	
sl@0
   270
/**
sl@0
   271
@publishedPartner
sl@0
   272
@released
sl@0
   273
sl@0
   274
Package buffer for a TMouseInfoV01 object.
sl@0
   275
sl@0
   276
@see TMouseInfoV01
sl@0
   277
*/ 
sl@0
   278
typedef TPckgBuf<TMouseInfoV01> TMouseInfoV01Buf;
sl@0
   279
sl@0
   280
sl@0
   281
sl@0
   282
/**
sl@0
   283
@publishedPartner
sl@0
   284
@released
sl@0
   285
sl@0
   286
Encapsulates Variant specific information.
sl@0
   287
sl@0
   288
An object of this type is passed, via a TPckgBuf, to the HAL handler
sl@0
   289
that deals with the HAL group function-id pair:
sl@0
   290
- EHalGroupVariant, EVariantHalVariantInfo;
sl@0
   291
sl@0
   292
@see EVariantHalVariantInfo
sl@0
   293
@see TVariantHalFunction
sl@0
   294
@see EHalGroupVariant
sl@0
   295
@see TPckgBuf
sl@0
   296
*/ 
sl@0
   297
class TVariantInfoV01
sl@0
   298
	{
sl@0
   299
public:
sl@0
   300
    /**
sl@0
   301
    The ROM version.
sl@0
   302
    */
sl@0
   303
	TVersion iRomVersion;
sl@0
   304
	
sl@0
   305
	/**
sl@0
   306
	The Id that uniquely identifies the device.
sl@0
   307
	*/
sl@0
   308
	SInt64 iMachineUniqueId;
sl@0
   309
	
sl@0
   310
	/**
sl@0
   311
	The bits that represent the LED capabilities.
sl@0
   312
	
sl@0
   313
	NB capabilities in this context does not mean security capabilities.
sl@0
   314
	*/
sl@0
   315
    TUint iLedCapabilities;
sl@0
   316
    
sl@0
   317
    /**
sl@0
   318
    The processor clock speed.
sl@0
   319
    */
sl@0
   320
    TInt iProcessorClockInKHz;
sl@0
   321
    
sl@0
   322
    /**
sl@0
   323
    The speed factor. 
sl@0
   324
    */
sl@0
   325
    TInt iSpeedFactor;
sl@0
   326
    };
sl@0
   327
    
sl@0
   328
    
sl@0
   329
    
sl@0
   330
    
sl@0
   331
/**
sl@0
   332
@publishedPartner
sl@0
   333
@released
sl@0
   334
sl@0
   335
Package buffer for a TVariantInfoV01 object.
sl@0
   336
sl@0
   337
@see TVariantInfoV01
sl@0
   338
*/ 
sl@0
   339
typedef TPckgBuf<TVariantInfoV01> TVariantInfoV01Buf;
sl@0
   340
sl@0
   341
sl@0
   342
sl@0
   343
sl@0
   344
/**
sl@0
   345
@publishedPartner
sl@0
   346
@deprecated Use HAL::Get() from the HAL library instead with attributes ESystemStartupReason.
sl@0
   347
sl@0
   348
The reason that the device last reset
sl@0
   349
sl@0
   350
Note that not all reasons can occur on all devices.
sl@0
   351
*/
sl@0
   352
enum TMachineStartupType
sl@0
   353
	{
sl@0
   354
	EStartupCold,EStartupColdReset,EStartupNewOs,
sl@0
   355
	EStartupPowerFail,EStartupWarmReset,EStartupKernelFault,
sl@0
   356
	EStartupSafeReset
sl@0
   357
	};
sl@0
   358
sl@0
   359
sl@0
   360
sl@0
   361
sl@0
   362
/**
sl@0
   363
@publishedPartner
sl@0
   364
@deprecated Use HAL::Get() from the HAL library instead with attributes  EPen or EMouse.
sl@0
   365
sl@0
   366
The XY input method supported
sl@0
   367
*/
sl@0
   368
enum TXYInputType
sl@0
   369
	{
sl@0
   370
	EXYInputNone,
sl@0
   371
	EXYInputPointer,
sl@0
   372
	EXYInputMouse,
sl@0
   373
	EXYInputDeltaMouse
sl@0
   374
	};
sl@0
   375
sl@0
   376
sl@0
   377
sl@0
   378
/**
sl@0
   379
@publishedPartner
sl@0
   380
@deprecated Use HAL::Get() from the HAL library instead.
sl@0
   381
sl@0
   382
Miscellaneous machine info.
sl@0
   383
*/
sl@0
   384
class TMachineInfoV1
sl@0
   385
	{
sl@0
   386
public:
sl@0
   387
	TVersion iRomVersion;
sl@0
   388
	TXYInputType iXYInputType;
sl@0
   389
	TBool iKeyboardPresent;
sl@0
   390
	TBool iBacklightPresent;
sl@0
   391
    TSize iDisplaySizeInPixels;
sl@0
   392
    TSize iXYInputSizeInPixels;
sl@0
   393
    TSize iPhysicalScreenSize;
sl@0
   394
	TPoint iOffsetToDisplayInPixels;
sl@0
   395
	TInt iKeyboardId;
sl@0
   396
	TInt iDisplayId;
sl@0
   397
	SInt64 iMachineUniqueId;
sl@0
   398
    TUint iLedCapabilities;
sl@0
   399
    TInt iProcessorClockInKHz;
sl@0
   400
    TInt iSpeedFactor;
sl@0
   401
    TInt iMaximumDisplayColors;
sl@0
   402
	};
sl@0
   403
/**
sl@0
   404
@publishedPartner
sl@0
   405
@deprecated
sl@0
   406
*/
sl@0
   407
typedef TPckgBuf<TMachineInfoV1> TMachineInfoV1Buf;
sl@0
   408
sl@0
   409
sl@0
   410
sl@0
   411
sl@0
   412
/**
sl@0
   413
@publishedPartner
sl@0
   414
@deprecated Use HAL::Get() from the HAL library instead with attributes ELanguageIndex or EKeyboardIndex.
sl@0
   415
sl@0
   416
Miscellaneous locale info.
sl@0
   417
*/
sl@0
   418
class TMachineInfoV2 : public TMachineInfoV1
sl@0
   419
	{
sl@0
   420
public:
sl@0
   421
	TInt iLanguageIndex;
sl@0
   422
    TInt iKeyboardIndex;
sl@0
   423
    };
sl@0
   424
/**
sl@0
   425
@publishedPartner
sl@0
   426
@deprecated
sl@0
   427
*/
sl@0
   428
typedef TPckgBuf<TMachineInfoV2> TMachineInfoV2Buf;
sl@0
   429
sl@0
   430
sl@0
   431
sl@0
   432
sl@0
   433
/**
sl@0
   434
@publishedPartner
sl@0
   435
@deprecated Use HAL::Get() from the HAL library instead with attributes EMemoryRAM, EMemoryRAMFree or EMemoryROM.
sl@0
   436
sl@0
   437
Miscellaneous memory info.
sl@0
   438
*/ 
sl@0
   439
class TMemoryInfoV1
sl@0
   440
    {
sl@0
   441
public:
sl@0
   442
    TInt iTotalRamInBytes;
sl@0
   443
    TInt iTotalRomInBytes;
sl@0
   444
    TInt iMaxFreeRamInBytes;
sl@0
   445
    TInt iFreeRamInBytes;
sl@0
   446
    TInt iInternalDiskRamInBytes;
sl@0
   447
    TBool iRomIsReprogrammable;
sl@0
   448
    };
sl@0
   449
/**
sl@0
   450
@publishedPartner
sl@0
   451
@deprecated
sl@0
   452
*/
sl@0
   453
typedef TPckgBuf<TMemoryInfoV1> TMemoryInfoV1Buf;
sl@0
   454
sl@0
   455
sl@0
   456
sl@0
   457
sl@0
   458
/**
sl@0
   459
@publishedPartner
sl@0
   460
@deprecated No replacement.
sl@0
   461
sl@0
   462
Miscellaneous ROM info.
sl@0
   463
*/ 
sl@0
   464
class TRomInfoEntryV1
sl@0
   465
	{
sl@0
   466
public:
sl@0
   467
    enum TRomTypeV1
sl@0
   468
    	{
sl@0
   469
    	ERomTypeRom=0,
sl@0
   470
    	ERomTypeFlash=1
sl@0
   471
    	};
sl@0
   472
	TInt iSize;		    // size of ROM in bytes, 0=no ROM present
sl@0
   473
	TInt iWidth;		// bus width in bits
sl@0
   474
	TInt iSpeed;		// number of wait states
sl@0
   475
	TRomTypeV1 iType;	// 0=ROM, 1=FLASH
sl@0
   476
	};
sl@0
   477
sl@0
   478
sl@0
   479
sl@0
   480
sl@0
   481
/**
sl@0
   482
@publishedPartner
sl@0
   483
@deprecated No replacement.
sl@0
   484
sl@0
   485
Miscellaneous ROM info.
sl@0
   486
*/ 
sl@0
   487
class TRomInfoV1
sl@0
   488
	{
sl@0
   489
public:
sl@0
   490
	TRomInfoEntryV1	iEntry[KMaxRomDevices];
sl@0
   491
	};
sl@0
   492
/**
sl@0
   493
@publishedPartner
sl@0
   494
@deprecated
sl@0
   495
*/
sl@0
   496
typedef TPckgBuf<TRomInfoV1> TRomInfoV1Buf;
sl@0
   497
sl@0
   498
/**
sl@0
   499
@publishedPartner
sl@0
   500
@released
sl@0
   501
*/
sl@0
   502
const TUint KRuggedFileSystem=0x01;
sl@0
   503
sl@0
   504
/**
sl@0
   505
@publishedPartner
sl@0
   506
@released
sl@0
   507
*/
sl@0
   508
class TDriveInfoV1
sl@0
   509
    {
sl@0
   510
public:
sl@0
   511
	TInt iTotalSupportedDrives;
sl@0
   512
	TInfoName iDriveName[KMaxLocalDrives];
sl@0
   513
	TInt iTotalSockets;
sl@0
   514
	TInfoName iSocketName[KMaxPBusSockets];
sl@0
   515
	TInt iRuggedFileSystem;
sl@0
   516
	TUint iRegisteredDriveBitmask;
sl@0
   517
	};
sl@0
   518
/**
sl@0
   519
@publishedPartner
sl@0
   520
@released
sl@0
   521
*/
sl@0
   522
typedef TPckgBuf<TDriveInfoV1> TDriveInfoV1Buf;
sl@0
   523
sl@0
   524
#if defined(_UNICODE) && !defined(__KERNEL_MODE__)
sl@0
   525
/**
sl@0
   526
@publishedPartner
sl@0
   527
@released
sl@0
   528
*/
sl@0
   529
class TDriveInfoV18
sl@0
   530
    {
sl@0
   531
public:
sl@0
   532
	TInt iTotalSupportedDrives;
sl@0
   533
	TBuf8<KMaxInfoName> iDriveName[KMaxLocalDrives]; //TInfoName
sl@0
   534
	TInt iTotalSockets;
sl@0
   535
	TBuf8<KMaxInfoName> iSocketName[KMaxPBusSockets]; //TInfoName
sl@0
   536
	TInt iRuggedFileSystem;
sl@0
   537
	TUint iRegisteredDriveBitmask;
sl@0
   538
	};
sl@0
   539
/**
sl@0
   540
@publishedPartner
sl@0
   541
@released
sl@0
   542
*/
sl@0
   543
typedef TPckgBuf<TDriveInfoV18> TDriveInfoV1Buf8;
sl@0
   544
#else
sl@0
   545
typedef TDriveInfoV1 TDriveInfoV18;
sl@0
   546
typedef TDriveInfoV1Buf TDriveInfoV1Buf8;
sl@0
   547
#endif
sl@0
   548
sl@0
   549
/**
sl@0
   550
@publishedPartner
sl@0
   551
@released
sl@0
   552
*/
sl@0
   553
class TExcInfo
sl@0
   554
	{
sl@0
   555
public:
sl@0
   556
	TAny *iCodeAddress;
sl@0
   557
	TAny *iDataAddress;
sl@0
   558
	TInt iExtraData;
sl@0
   559
	};
sl@0
   560
sl@0
   561
#ifndef __KERNEL_MODE__
sl@0
   562
#include <e32std.h>
sl@0
   563
sl@0
   564
sl@0
   565
sl@0
   566
sl@0
   567
/**
sl@0
   568
@publishedPartner
sl@0
   569
@released
sl@0
   570
sl@0
   571
A set of user side utility functions for acessing hardware related
sl@0
   572
information.
sl@0
   573
sl@0
   574
Four of these functions are DEPRECATED and should NOT be used; some of
sl@0
   575
these functions have replacements, but others do not; see the description of
sl@0
   576
the individual functions.
sl@0
   577
sl@0
   578
The following functions are not deprecated, but are only used by Symbian
sl@0
   579
OS as part of its internal implementation:
sl@0
   580
-  UserHal::FaultReason()
sl@0
   581
-  UserHal::ExceptionId()
sl@0
   582
-  UserHal::ExceptionInfo()
sl@0
   583
-  UserHal::PageSizeInBytes()
sl@0
   584
-  UserHal::TickPeriod()
sl@0
   585
-  UserHal::DriveInfo()
sl@0
   586
-  UserHal::SwitchOff()
sl@0
   587
-  UserHal::SetXYInputCalibration()
sl@0
   588
-  UserHal::CalibrationPoints()
sl@0
   589
-  UserHal::SaveXYInputCalibration()
sl@0
   590
-  UserHal::RestoreXYInputCalibration()
sl@0
   591
*/
sl@0
   592
class UserHal
sl@0
   593
	{
sl@0
   594
public:
sl@0
   595
	// kernel group
sl@0
   596
	IMPORT_C static TInt MemoryInfo(TDes8& anInfo);
sl@0
   597
	IMPORT_C static TInt RomInfo(TDes8& anInfo);
sl@0
   598
	IMPORT_C static TInt StartupReason(TMachineStartupType& aReason);
sl@0
   599
	IMPORT_C static TInt FaultReason(TInt &aReason);
sl@0
   600
	IMPORT_C static TInt ExceptionId(TInt &anId);
sl@0
   601
	IMPORT_C static TInt ExceptionInfo(TExcInfo &aInfo);
sl@0
   602
	IMPORT_C static TInt PageSizeInBytes(TInt& aSize);
sl@0
   603
sl@0
   604
	// variant group
sl@0
   605
	IMPORT_C static TInt MachineInfo(TDes8& anInfo);
sl@0
   606
	IMPORT_C static TInt TickPeriod(TTimeIntervalMicroSeconds32& aPeriod);
sl@0
   607
sl@0
   608
	// media group
sl@0
   609
	IMPORT_C static TInt DriveInfo(TDes8& anInfo);
sl@0
   610
sl@0
   611
	// power group
sl@0
   612
   	IMPORT_C static TInt SwitchOff();
sl@0
   613
sl@0
   614
	// digitiser group
sl@0
   615
	IMPORT_C static TInt SetXYInputCalibration(const TDigitizerCalibration& aCalibration);
sl@0
   616
	IMPORT_C static TInt CalibrationPoints(TDigitizerCalibration& aCalibration);
sl@0
   617
	IMPORT_C static TInt SaveXYInputCalibration();
sl@0
   618
	IMPORT_C static TInt RestoreXYInputCalibration(TDigitizerCalibrationType aType);
sl@0
   619
	};
sl@0
   620
#endif
sl@0
   621
#endif
sl@0
   622