Update contrib.
1 // Copyright (c) 1994-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of the License "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // e32\include\e32const.h
18 #ifndef __E32CONST_H__
19 #define __E32CONST_H__
30 The default width value used when appending and justifying data
33 @see TDes16::AppendJustify()
34 @see TDes16::Justify()
35 @see TDes8::AppendJustify()
38 const TInt KDefaultJustifyWidth=(-1);
46 Defines the number of TUids that form a TUidType.
51 const TInt KMaxCheckedUid=3;
58 Defines the number of 32-bit debug trace mask words.
61 const TInt KNumTraceMaskWords = 8;
68 Defines the maximum length for the text form of a UID name.
73 const TInt KMaxUidName=10;
82 Defines the maximum length of a module name.
84 const TInt KMaxModuleVersionName=10;
93 Defines the maximum length of the name of a reference counted object.
97 const TInt KMaxName=0x80;
106 Defines the maximum length of the name of a reference counted kernel-side object.
108 const TInt KMaxKernelName=0x50;
117 Defines the maximum size of a process name.
119 const TInt KMaxProcessName=(KMaxKernelName-KMaxUidName-KMaxModuleVersionName-4);
128 Defines the maximum size of a library name.
130 const TInt KMaxLibraryName=(KMaxKernelName-KMaxUidName-KMaxModuleVersionName);
139 Defines the maximum length of a TInfoName object.
141 const TInt KMaxInfoName=0x10;
150 Defines the maximum length of the full name of a reference counted object.
154 const TInt KMaxFullName=(KMaxName<<1);
163 The maximum length for a password buffer.
167 const TInt KMaxPassword=0x10;
176 The maximum length of a category name.
178 @see TExitCategoryName
180 const TInt KMaxExitCategoryName=0x10;
189 The maximum length of the full text name for a day of the week.
193 const TInt KMaxDayName=0x20;
202 The maximum length of the abbreviated text name for a day of the week.
206 const TInt KMaxDayNameAbb=0x08;
215 Defines the maximum size of arrays or data structures required
216 to hold the names of the days of the week.
218 const TInt KMaxDays=7;
227 The maximum length of the full text name for a month.
231 const TInt KMaxMonthName=0x20;
240 The maximum length of the abbreviated text name for a month.
244 const TInt KMaxMonthNameAbb=0x08;
253 Defines the maximum size of arrays or data structures required
254 to hold the names of the months of the year.
256 const TInt KMaxMonths=12;
265 The maximum length of the text for a date suffix.
269 const TInt KMaxSuffix=0x04;
278 Defines the maximum size of arrays and data structures required
279 to hold date suffix strings.
281 const TInt KMaxSuffixes=31;
290 The maximum length of the text for AM and PM.
294 const TInt KMaxAmPmName=0x04;
303 Defines the maximum size of arrays and data structures required
304 to hold am/pm strings.
306 const TInt KMaxAmPms=2;
315 Defines the maximum number of date separator characters in a date string.
317 const TInt KMaxDateSeparators=4;
326 Defines the maximum number of time separator characters in a time string.
328 const TInt KMaxTimeSeparators=4;
337 Defines the maximum size of data structures to hold the translate tables
338 for Western European alphabetic conversions.
340 const TInt KMaxTranslateTable=0x100;
349 The maximum length of the text for a currency symbol.
353 const TInt KMaxCurrencySymbol=0x08;
362 The maximum length of the short date format specification text.
364 @see TShortDateFormatSpec
366 const TInt KMaxShortDateFormatSpec=40;
375 The maximum length of the short date format specification text.
377 @see TLongDateFormatSpec
379 const TInt KMaxLongDateFormatSpec=80;
388 The maximum length of the time string formatting commands.
392 const TInt KMaxTimeFormatSpec=60;
401 Defines the maximum length of a filename.
403 const TInt KMaxFileName=0x100;
412 The maximum length of the character representation of version information.
414 @see TVersion::Name()
416 const TInt KMaxVersionName=0x10;
425 Defines the maximum length of a path.
429 const TInt KMaxPath=0x100;
438 Defines the maximum length of a TDeviceInfo object.
442 const TInt KMaxDeviceInfo=0x80;
451 The maximum size of the password required to unlock a media drive.
453 const TInt KMaxMediaPassword=16;
462 Defines the minimum size of a new heap.
464 Functions that require a new heap to be allocated will either panic,
465 or will reset the required heap size to this value if a smaller heap
469 @see RThread::Create()
471 const TInt KMinHeapSize=0x100;
480 Not used by Symbian OS.
482 const TInt KDstHome=0x01;
491 Not used by Symbian OS.
493 const TInt KDstEuropean=0x02;
502 Not used by Symbian OS.
504 const TInt KDstNorthern=0x04;
513 Not used by Symbian OS.
515 const TInt KDstSouthern=0x08;
524 A default stack size that can be used when creating threads.
527 const TInt KDefaultStackSize=0x4000;
529 const TInt KDefaultStackSize=0x2000;
539 Indicates an undefined character, used internally when formatting text.
541 const TUint KNoChar=0xffffffffu;
550 Defines an index value that is interpreted by the TKey class,
551 and derived classes, as having a specific meaning.
556 const TInt KIndexPtr=(-1);
565 A flag used by the kernel to mark a handle as not being closable.
567 const TInt KHandleNoClose=0x00008000;
576 A flag used by the kernel to mark a handle as being local.
578 const TInt KHandleFlagLocal=0x40000000;
587 A flag used by the Kernel to indicate the current process.
589 const TInt KCurrentProcessHandle=0xffff0000|KHandleNoClose;
598 A flag used by the Kernel to indicate the current thread.
600 const TInt KCurrentThreadHandle=0xffff0001|KHandleNoClose;
609 Defines a handle number value of zero.
613 const TInt KNullHandle=0;
622 Defines a default unit. Not generally used by Symbian OS.
624 const TInt KDefaultUnit=0x00;
633 The device unit that must be passed in a call
634 to RBusLogicalChannel::DoCreate(), if units are not permitted.
636 @see RBusLogicalChannel
638 const TInt KNullUnit=0xffffffff;
647 The maximum unit number that can be passed in a call
648 to RBusLogicalChannel::DoCreate().
650 @see RBusLogicalChannel
652 const TInt KMaxUnits=0x20;
661 Defines the maximum number of message arguments that can be passed
662 across the user side/kernel side boundary.
664 const TInt KMaxMessageArguments=0x04;
673 The default width of the character representation of a real number, used by
674 the default constructor of a TRealFormat object and the formatting functions
678 @see TDes16::AppendFormat()
679 @see TDes8::AppendFormat()
681 const TInt KDefaultRealWidth=20;
690 The default value used by UserHeap::ChunkHeap() for defining increments to
691 the size of a chunk, when no explicit value specified by the caller.
693 @see UserHeap::ChunkHeap()
695 const TInt KMinHeapGrowBy=0x1000;
704 Not used by Symbian OS.
706 const TInt KMaxExponentConversion=99;
715 Defines a Null UID value.
719 const TInt KNullUidValue=0;
728 The timer granularity used by a CDeltaTimer object is
729 now the tick period and this constant is obsolete.
733 const TInt KDeltaTimerDefaultGranularity=100000;
742 The largest possible value for a TInt8.
744 const TInt KMaxTInt8=0x7f;
753 The smallest possible value for a TInt8.
755 const TInt KMinTInt8=(-128);
764 The largest possible value for a TUint8.
766 const TUint KMaxTUint8=0xffu;
775 The largest possible value for a TInt16.
777 const TInt KMaxTInt16=0x7fff;
786 The smallest possible value for a TInt16.
788 const TInt KMinTInt16=(-32768);
797 The largest possible value for a TUint16.
799 const TUint KMaxTUint16=0xffffu;
808 The largest possible value for a TInt32.
810 const TInt KMaxTInt32=0x7fffffff;
819 The smallest possible value for a TInt32.
821 const TInt KMinTInt32=(TInt)0x80000000;
830 The largest possible value for a TUint32.
832 const TUint KMaxTUint32=0xffffffffu;
841 The largest possible value for a TInt.
843 const TInt KMaxTInt=0x7fffffff;
852 The smallest possible value for a TInt.
854 const TInt KMinTInt=(TInt)0x80000000;
863 The largest possible value for a TUint.
865 const TUint KMaxTUint=0xffffffffu;
874 The largest possible value for a TInt64.
876 const TInt64 KMaxTInt64 = I64LIT(0x7fffffffffffffff);
885 The smallest possible value for a TInt64.
887 const TInt64 KMinTInt64 = UI64LIT(0x8000000000000000);
896 The largest possible value for a TUint64.
898 const TUint64 KMaxTUint64 = UI64LIT(0xffffffffffffffff);
907 Defines the character *, and represents any number of characters in any
908 part of a path component, filename or extension.
910 It is used in a TParse file specification.
914 const TUint KMatchAny='*';
923 Defines the character ?, and represents a single character in
924 a path component, filename or extension.
926 It is used in a TParse file specification.
930 const TUint KMatchOne='?';
939 Defines the maximum number of local drives.
941 const TInt KMaxLocalDrives=16;
950 Defines the maximum number of peripheral bus sockets.
952 const TInt KMaxPBusSockets=4;
961 Not used by Symbian OS.
963 const TInt KNoCallEntryPoint = 0x01;
972 The value to which CActive::iStatus is set by an active object's
973 service provider before the service provider initiates an asynchronous request.
977 const TInt KRequestPending=(-KMaxTInt);
982 // Drive capabilities
988 Defines the possible media types.
998 /** Solid-state media. */
1013 /** Rotating media. */
1024 Defines the state of a battery, if supported.
1026 enum TBatteryState {EBatNotSupported,EBatGood,EBatLow};
1033 Defines the possible connection types used to interface to the media.
1035 enum TConnectionBusType {EConnectionBusInternal, EConnectionBusUsb};
1042 Drive attribute - drive is local.
1044 const TUint KDriveAttLocal=0x01;
1053 Drive attribute - ROM drive.
1055 const TUint KDriveAttRom=0x02;
1064 Drive attribute - output from a process on one drive is redirected
1067 const TUint KDriveAttRedirected=0x04;
1076 Drive attribute - drive letter has been substituted (assigned a path).
1078 const TUint KDriveAttSubsted=0x08;
1087 Drive attribute - drive is internal (not removable).
1089 const TUint KDriveAttInternal=0x10;
1098 Drive attribute - drive is removable.
1100 const TUint KDriveAttRemovable=0x20;
1109 Drive attribute - drive is remote.
1111 const TUint KDriveAttRemote=0x40;
1122 const TUint KDriveAttTransaction=0x80;
1129 Drive attribute - drive is used for paging.
1131 const TUint KDriveAttPageable=0x100;
1139 Drive attribute - drive is logically removable (can be taken offline from Symbian OS).
1140 If not logically removable then physically removable e.g. a card can be take out.
1142 const TUint KDriveAttLogicallyRemovable=0x200;
1149 Drive attribute - drive is hidden.
1150 A drive which has its hidden attribute set would be excluded from the list of available drives.
1152 const TUint KDriveAttHidden=0x400;
1159 Drive attribute - drive is external.
1161 const TUint KDriveAttExternal=0x800;
1168 Drive attribute - It can be set in a search in order to instruct that all drives should be returned.
1170 const TUint KDriveAttAll=0x100000;
1177 Drive attribute - It can be set in combination with other drive attributes in order to exclude during a drive search, drives with
1178 these attributes set.
1180 const TUint KDriveAttExclude=0x40000;
1188 Drive attribute - It can be set in combination with other drive attributes in order to search and return exclusively drives with these attributes set.
1190 const TUint KDriveAttExclusive=0x80000;
1197 Used as a mask in order to extract the actual drive attributes.
1200 const TUint KDriveAttMatchedFlags=0xFFF;
1207 Used as a mask in order to extract the extra(ex KDriveAttAll ,KDriveAttExclude, KDriveAttExclusive ,0) drive attributes.
1209 const TUint KDriveAttMatchedAtt=0x0FFF0000;
1218 Media attribute - the media capacity can change over time.
1220 const TUint KMediaAttVariableSize=0x01;
1229 Media attribute - media is dual density.
1231 const TUint KMediaAttDualDensity=0x02;
1240 Media attribute - media is formattable.
1242 const TUint KMediaAttFormattable=0x04;
1251 Media attribute - media is write-protected.
1253 const TUint KMediaAttWriteProtected=0x08;
1262 Media attribute - media is lockable; this is provided for
1263 lockable multi-media cards
1265 const TUint KMediaAttLockable=0x10;
1274 Media attribute - media is locked; this is provided for
1275 lockable multi-media cards
1277 const TUint KMediaAttLocked=0x20;
1285 Media attribute - media has password.
1287 const TUint KMediaAttHasPassword=0x40;
1293 const TUint KMediaAttReadWhileWrite=0x80;
1299 Media attribute - media supports TBusLocalDrive::DeleteNotify()
1301 const TUint KMediaAttDeleteNotify=0x100;
1307 Media attribute - media supports paging
1309 const TUint KMediaAttPageable=0x200;
1317 Identifies a FAT file system
1319 const TUint KDriveFileSysFAT=0x01;
1328 Identifies a ROM file system.
1330 const TUint KDriveFileSysROM=0x02;
1339 Identifies an LFFS file system.
1341 const TUint KDriveFileSysLFFS=0x03;
1350 Identifies a read-only file system.
1352 const TUint KDriveFileSysROFS=0x04;
1361 Identifies a non-file system. That is a partition without any file system layer.
1363 const TUint KDriveFileNone=0x05;
1372 An enumerator with a single enumeration value that defines the Boolean value
1373 false in Symbian OS.
1379 Defines the value false that is passed to a TBool type.
1391 An enumerator with a single enumeration value that defines the Boolean value
1398 Defines the value true that is passed to a TBool type.
1410 Defines flags that can be used to indicate whether duplicates, for example in
1411 a list, are allowed.
1413 enum TAllowDuplicates {
1415 No duplicates allowed.
1432 An enumeration whose enumerators determine the number system to be used
1433 when converting numbers into a character format.
1437 @see TDes8::AppendNum()
1438 @see TDes8::AppendNumUC()
1440 @see TDes16::NumUC()
1441 @see TDes16::AppendNum()
1442 @see TDes16::AppendNumUC()
1446 Convert number into binary character representation.
1450 Convert number into octal character representation.
1454 Convert number into decimal character representation.
1458 Convert number into hexadecimal character representation.
1471 The mask for the dialect bits
1473 const TUint KDialectMask=0x03FF;
1483 Defines the date formats.
1487 US format (mm/dd/yyyy)
1492 European format (dd/mm/yyyy)
1497 Japanese format (yyyy/mm/dd)
1508 Defines the time formats as either 12 hour or 24 hour.
1522 Defines the clock display formats, as either analog or digital.
1536 Enumerates the units of measurement as either Imperial or Metric.
1550 Identifies a time as being am or pm.
1566 1. the currency symbol is located before or after the currency amount.
1568 2. the am/pm text is located before or after the time.
1573 The currency symbol is located before the currency amount.
1574 The am/pm text is located before the time.
1579 The currency symbol is located after the currency amount.
1580 The am/pm text is located after the time.
1592 Number Modes available to select.
1596 EDigitTypeUnknown = 0x0000,
1597 EDigitTypeWestern = 0x0030,
1598 EDigitTypeArabicIndic = 0x0660,
1599 EDigitTypeEasternArabicIndic = 0x6F0,
1600 EDigitTypeDevanagari = 0x0966,
1601 EDigitTypeBengali = 0x09E6,
1602 EDigitTypeGurmukhi = 0x0A66,
1603 EDigitTypeGujarati = 0x0AE6,
1604 EDigitTypeOriya = 0x0B66,
1605 EDigitTypeTamil = 0x0BE6,
1606 EDigitTypeTelugu = 0x0C66,
1607 EDigitTypeKannada = 0x0CE6,
1608 EDigitTypeMalayalam = 0x0D66,
1609 EDigitTypeThai = 0x0E50,
1610 EDigitTypeLao = 0x0ED0,
1611 EDigitTypeTibetan = 0x0F20,
1612 EDigitTypeMayanmar = 0x1040,
1613 EDigitTypeKhmer = 0x17E0,
1614 EDigitTypeAllTypes = 0xFFFF
1624 Defines the daylight saving zones.
1626 enum TDaylightSavingZone
1629 The home daylight saving zone. Its value is usually the same as that of the
1630 zone in which the home city is located, but may differ. In this case, the
1631 value for home overrides the value of the zone in which home is located.
1633 EDstHome=0x40000000,
1636 No daylight saving zone.
1641 The European daylight saving zone.
1646 The Northern hemisphere (non-European) daylight saving zone.
1651 Southern hemisphere daylight saving zone.
1662 Indicates how negative currency values are formatted.
1664 enum TNegativeCurrencyFormat // must match TLocale:: version, included here so ELOCL.DLL can see it
1666 E_NegC_LeadingMinusSign,
1667 E_NegC_InBrackets,// this one must be non-zero for binary compatibility with the old TBool TLocale::iCurrencyNegativeInBrackets which was exposed in the binary interface because it was accessed via *inline* functions
1668 E_NegC_InterveningMinusSignWithSpaces,
1669 E_NegC_InterveningMinusSignWithoutSpaces,
1670 E_NegC_TrailingMinusSign
1677 Indicates how the device universal time is maintained
1679 enum TDeviceTimeState // must match TLocale:: version
1681 /** Universal time is maintained by the device RTC and the user selection
1682 of the locale of the device indicating offset from GMT and daylight saving*/
1685 /** Universal time and offset from GMT is supplied by the mobile network
1686 and maintained by device RTC */
1687 ENITZNetworkTimeSync
1693 Indicates the type of conversion required for FAT filenames
1695 enum TFatFilenameConversionType
1697 /** Undefined conversion scheme; conversion obtained is whatever the
1698 default policy is for this version of the OS. */
1699 EFatConversionDefault = 0,
1700 /** x-fat<nnn>.dll is loaded, where <nnn> is the FAT filename conversion number. */
1701 EFatConversionNonStandard = 1,
1702 /** cp<nnn>.dll is loaded, where <nnn> is the FAT filename conversion number. */
1703 EFatConversionMicrosoftCodePage = 2
1711 Defines the days of the week.
1713 The enumerator symbol names correspond with the days of the week,
1714 i.e. EMonday refers to Monday etc.
1734 Defines the months of the year.
1736 The enumerator symbol names correspond with the months of the year,
1737 i.e. EJanuary refers to January etc.
1762 Handle ownership flags.
1764 The flags indicate whether a handle being opened is owned by a process or
1767 Ownership by a process means that the handle instance can be used by all
1768 threads in the process to access the Kernel side object that the
1771 Ownership by a thread means that the handle instance can only be used by the
1772 thread that creates or opens the handle.
1774 An enumerator of this type is passed to all member functions of RHandleBase,
1775 and classes derived from RHandleBase, which open a handle.
1779 Ownership of the handle is to be vested in the process.
1784 Ownership of the handle is to be vested in the thread.
1792 const TInt KCreateProtectedObject = (TInt)0x80000000;
1802 Defines process priorities.
1804 The enumerator values are passed to RProcess::SetPriority().
1806 The priorities are listed in relative order stating with the lowest.
1808 enum TProcessPriority
1811 EPriorityBackground=250,
1812 EPriorityForeground=350,
1814 EPriorityWindowServer=650,
1815 EPriorityFileServer=750,
1816 EPriorityRealTimeServer=850,
1817 EPrioritySupervisor=950
1827 Defines thread priorities.
1829 The enumerator values are passed to RThread::SetPriority().
1831 The relative priorities are listed in order starting with the lowest.
1833 The absolute thread priorities are listed in order starting with the lowest.
1835 enum TThreadPriority
1837 EPriorityNull=(-30),
1838 EPriorityMuchLess=(-20),
1839 EPriorityLess=(-10),
1842 EPriorityMuchMore=20,
1843 EPriorityRealTime=30,
1844 EPriorityAbsoluteVeryLow=100,
1845 EPriorityAbsoluteLowNormal=150,
1846 EPriorityAbsoluteLow=200,
1847 EPriorityAbsoluteBackgroundNormal=250,
1848 EPriorityAbsoluteBackground=300,
1849 EPriorityAbsoluteForegroundNormal=350,
1850 EPriorityAbsoluteForeground=400,
1851 EPriorityAbsoluteHighNormal=450,
1852 EPriorityAbsoluteHigh=500,
1853 EPriorityAbsoluteRealTime1=810,
1854 EPriorityAbsoluteRealTime2=820,
1855 EPriorityAbsoluteRealTime3=830,
1856 EPriorityAbsoluteRealTime4=840,
1857 EPriorityAbsoluteRealTime5=850,
1858 EPriorityAbsoluteRealTime6=860,
1859 EPriorityAbsoluteRealTime7=870,
1860 EPriorityAbsoluteRealTime8=880
1868 A list of exception types which a thread's exception handler might deal with.
1869 An enumerator of this type is passed to User::IsExceptionHandled()
1870 and User::RaiseException().
1872 While an exception handler can deal with exceptions as listed in the exception
1873 constants set, a TExcType is simply a type of exception.
1874 For example, EExcIntegerDivideByZero and EExcIntegerOverflow are types
1875 of KExceptionInteger exception.
1879 EExcGeneral=0, ///<A miscellaneous exception.
1880 EExcIntegerDivideByZero=1, ///<An attempt was made to divide an integer by zero.
1881 EExcSingleStep=2, ///<Raised after executing an instruction, when CPU is in single-step mode.
1882 EExcBreakPoint=3, ///<A break point was hit.
1883 EExcIntegerOverflow=4, ///<An integer value overflowed.
1884 EExcBoundsCheck=5, ///<Access to an out of bounds array element was caught.
1885 EExcInvalidOpCode=6, ///<The CPU reached an invalid instruction.
1886 EExcDoubleFault=7, ///<A fault occurred while handling a previous exception or interrupt.
1887 EExcStackFault=8, ///<The thread ran out of stack space.
1888 EExcAccessViolation=9, ///<The thread attempted to access memory in an unauthorized area.
1889 EExcPrivInstruction=10, ///<Attempted to execute an instruction in wrong machine mode.
1890 EExcAlignment=11, ///<The thread tried to read or write non-aligned data.
1891 EExcPageFault=12, ///<Thread could not access the memory page requested.
1892 EExcFloatDenormal=13, ///<An operand in a floating point operation was denormal.
1893 EExcFloatDivideByZero=14, ///<An attempt was made to divide a floating point number by zero.
1894 EExcFloatInexactResult=15, ///<The result of a floating point operation could not be represented precisely.
1895 EExcFloatInvalidOperation=16, ///<The result of a floating point operation was an ill-defined quantity.
1896 EExcFloatOverflow=17, ///<The result of a floating point operation was too large to be represented.
1897 EExcFloatStackCheck=18, ///<The result of a floating point operation caused the stack to over or underflow.
1898 EExcFloatUnderflow=19, ///<The result of a floating point operation was too small to be represented.
1899 EExcAbort=20, ///<This exception is not raised by the Kernel, though it may be raised by a user thread on itself.
1900 EExcKill=21, ///<This exception is not raised by the Kernel, though it may be raised by a user thread on itself.
1901 EExcUserInterrupt=22, ///<May be used to indicate a general exception.
1902 EExcDataAbort=23, ///<The thread has tried to read data from an invalid address.
1903 EExcCodeAbort=24, ///<The thread has tried to fetch an instruction from an invalid address.
1904 EExcMaxNumber=25, ///<Do not use.
1905 EExcInvalidVector=26, ///<Do not use.
1914 Identifies how a thread or process has ended.
1916 While a thread or process is alive, its exit type is always EExitPending.
1918 Both RThread::ExitType() and RProcess::ExitType() return a TExitType.
1920 @see RThread::ExitType()
1921 @see RProcess::ExitType()
1923 @see RThread::Kill()
1924 @see RProcess::Kill()
1928 The thread or process has ended under normal conditions, i.e. as a result of either:
1929 1. The thread or process running to completion.
1930 2. User::Exit() being invoked.
1931 3. RThread::Kill() or RProcess::Kill() being invoked on the RThread or RProcess handle, respectively.
1936 The thread or process has ended as a result of a terminate,
1937 i.e. Terminate() has been called on the RThread or RProcess handle.
1942 The thread or process has been panicked.
1947 The thread or process is alive.
1959 An enumeration whose enumerators govern the alignment of data which is copied
1960 or formatted into a descriptor.
1962 @see TDes8::Justify()
1963 @see TDes8::AppendJustify()
1964 @see TDes16::Justify()
1965 @see TDes16::AppendJustify()
1969 Data is left aligned
1977 Data is right aligned
1989 A mask for the set of flags that govern the general format
1990 of the character representation of a real number.
1992 These are the flags with symbols starting KRealFormat...
1994 const TInt KRealFormatTypesMask=0x00000007;
2003 Defines the general format of the character representation of a real number.
2004 The TRealFormat::iType data member is set to one of these.
2006 The real number is converted to fixed format which has the general pattern:
2007 "nnn.ddd", where nnn is the integer portion and ddd is the decimal portion.
2008 A negative value is prefixed by a minus sign.
2010 The number of decimal places generated is defined by the value of
2011 TRealFormat::iPlaces. Trailing zeroes are generated as required.
2012 If necessary, the decimal portion is rounded to fit the specification.
2013 If this value is zero, no decimal point and no decimal portion is generated.
2015 Triad separation is available,
2016 defined by TRealFormat::iTriad and TRealFormat::iTriLen.
2018 Note that a zero value is converted either to the form "0.000..." with
2019 iPlaces '0' characters after the decimal point, if iPlaces is greater than
2020 zero, or to "0" if iPlaces is zero.
2024 const TInt KRealFormatFixed=1;
2033 Defines the general format of the character representation of a real number.
2034 The TRealFormat::iType data member is set to one of these.
2036 The real number is converted to scientific format with one non-zero digit
2037 before the decimal point and a number of digits after the decimal point.
2038 Hence the number has the general pattern:
2039 "n.dddE+ee" or "n.dddE-ee", or "n.dddE+eee" or "n.dddE-eee".
2041 The decimal portion is followed by the character 'E', a sign ('+' or '-')
2042 and the exponent as two digits, including leading zeroes, if necessary.
2043 If necessary, the decimal portion is rounded.
2045 A negative value is prefixed by a minus sign.
2047 If the flag KUseSigFigs is not set, TRealFormat::iPlaces defines the number
2048 of digits which follow the decimal point. If the flag KUseSigFigs is set,
2049 iPlaces defines the maximum number of significant digits to be generated.
2051 Note that, by default, exponents are limited to two digits.
2052 Those numbers that require three digits must have the flag
2053 KAllowThreeDigitExp set. If iPlaces is zero, the value is rounded to one digit
2054 of precision and no decimal point is included.
2056 Triad separation is not available.
2058 Note that a zero value is converted either to the form "0.000...E+00" with
2059 iPlaces '0' characters after the decimal point, if iPlaces is greater than
2060 zero, or to "0E+00" if iPlaces is zero.
2064 const TInt KRealFormatExponent=2;
2073 Defines the general format of the character representation of a real number.
2074 The TRealFormat::iType data member is set to one of these.
2076 The real number is converted either to fixed or scientific format.
2077 The format chosen is the one which can present the greater number of
2078 significant digits. Where both formats can present the same number of
2079 significant digits, fixed format is used.
2081 The number of decimal places generated depends only on the value of
2082 TRealFormat::iWidth; the value of the iPlaces member is ignored.
2084 Trailing zeroes in the decimal portion are discarded.
2086 Triad separation is not available.
2088 Note that a zero value is converted to "0".
2092 const TInt KRealFormatGeneral=3;
2101 Defines the general format of the character representation of a real number.
2102 The TRealFormat::iType data member is set to one of these.
2104 The same as KRealFormatFixed but the TRealFormat::iPlaces is interpreted as
2105 specifying the maximum number of significant digits.
2107 Trailing zeroes in the decimal portion are discarded.
2111 const TInt KRealFormatNoExponent=4;
2120 Defines the general format of the character representation of a real number.
2121 The TRealFormat::iType data member is set to one of these.
2123 The same as KRealFormatGeneral but TRealFormat::iPlaces is interpreted as
2124 specifying the maximum number of significant digits, and the number is
2125 displayed without an exponent whenever possible.
2127 Trailing zeroes in the decimal portion are discarded.
2131 const TInt KRealFormatCalculator=5;
2136 // Extra flags ORed in with the previous types
2143 A bitmask for all flags except those with symbols starting KRealFormat...
2145 const TInt KRealFormatTypeFlagsMask=0x7E000000;
2154 A flag that modifies the format of the character representation of a real
2157 It reduces the effective width by one character. This forces a large enough
2158 value for TRealFormat::iWidth to be chosen to guarantee that positive and
2159 negative numbers can be shown to the same precision.
2161 It applies when TRealFormat::iType is set to KRealFormatFixed
2162 or KRealFormatGeneral, and should be ORed into TRealFormat::iType after one of
2163 these types has been set.
2165 const TInt KExtraSpaceForSign=0x40000000;
2173 A flag that modifies the format of the character representation of a real
2176 It allows an exponent to be formatted whose magnitude is greater than 100.
2177 If this flag is not set, an attempt to format such a number fails.
2179 If set, three digit exponents are allowed. If not set, only two digit
2180 exponents are allowed.
2182 Applies when TRealFormat::iType is set to KRealFormatExponent
2183 or KRealFormatGeneral, and should be ORed into TRealFormat::iType after one of
2184 these types has been set.
2186 const TInt KAllowThreeDigitExp=0x20000000;
2195 A flag that modifies the format of the character representation of a real
2198 If set, the TRealFormat::iPlaces member is interpreted as the maximum number
2199 of significant digits to be generated.
2201 Applies when TRealFormat::iType is set to KRealFormatExponent, and should be
2202 ORed into TRealFormat::iType after this type has been set.
2204 const TInt KUseSigFigs=0x10000000;
2213 A flag that modifies the format of the character representation of a real
2216 It disables triad separation.
2218 Applies when TRealFormat::iType is set to KRealFormatFixed
2219 or KRealFormatNoExponent, and should be ORed into TRealFormat::iType after one of
2220 these types has been set.
2222 const TInt KDoNotUseTriads=0x08000000;
2231 A flag that modifies the format of the character representation of a real
2234 If set, this flag limits the precision to KPrecisionLimit digits.
2235 If not set, the precision defaults to KMaxPrecision digits.
2237 This flag should be ORed into TRealFormat::iType.
2239 const TInt KGeneralLimit=0x04000000;
2248 A flag that modifies the format of the character representation of a real
2251 If set, this flag allows enough digits of precision such that the mapping from
2252 numeric to string form is injective. For a TReal (=double) input argument
2253 this means KIEEEDoubleInjectivePrecision digits.
2254 This flag overrides the KGeneralLimit flag if both are set.
2256 This flag should be ORed into TRealFormat::iType.
2258 const TInt KRealInjectiveLimit=0x02000000;
2267 A value, which when passed to the new operator, indicates that the operation
2268 is to leave if insufficient memory available.
2270 enum TLeave {ELeave};
2279 Defines the way in which the first week in a year is determined.
2281 enum TFirstWeekRule {
2283 The first week in the year is always the week containing
2284 the first day of the year.
2288 If at least four days of the new year occur during the week
2289 containing the first day then this is the first week in the
2290 year. Otherwise the first week in the year is the following
2291 week. This is the default and complies with the
2292 international standard.
2296 The first week in the year is the first week of which all
2297 seven days occur within the new year.
2309 Timer lock specifications.
2311 They are used by CTimer::Lock() to define the fraction of a second in which
2312 to call its RunL() function.
2318 /** Timer tick is at 1/12 past the second. */
2321 /** Timer tick is at 2/12 past the second */
2324 /** Timer tick is at 3/12 past the second */
2327 /** Timer tick is at 4/12 past the second */
2330 /** Timer tick is at 5/12 past the second */
2333 /** Timer tick is at 6/12 past the second */
2336 /** Timer tick is at 7/12 past the second */
2339 /** Timer tick is at 8/12 past the second */
2342 /** Timer tick is at 9/12 past the second */
2345 /** Timer tick is at 10/12 past the second */
2348 /** Timer tick is at 11/12 past the second */
2351 /** Timer tick is on the second */
2362 Defines the possible environment changes which may be reported by
2363 a change notifier through the RChangeNotifier interface.
2365 Each enumerator corresponds to a distinct type of event.
2367 The changes are reported through a TRequestStatus object when a request to
2368 the change notifier completes. As each enumerator value represents
2369 a separate bit, any combination of events can be reported.
2371 @see RChangeNotifier
2378 The system locale has changed.
2380 Typically this event occurs as a result of a call to TLocale::Set().
2382 EChangesLocale=0x01,
2386 The system time has passed midnight.
2388 EChangesMidnightCrossover=0x02,
2394 This event is reported when any thread in the system dies.
2396 EChangesThreadDeath=0x04,
2400 The status of the power supply has changed.
2402 EChangesPowerStatus=0x08,
2406 The system time has changed.
2408 EChangesSystemTime=0x10,
2412 The free memory level has crossed a specified threshold value.
2414 On systems that support data paging, this is also generated where the available swap space
2415 crosses one of the specified threshold values.
2417 EChangesFreeMemory=0x20,
2421 A memory allocation has failed due to insufficient free memory.
2423 EChangesOutOfMemory=0x40,
2427 The free memory level has fallen below the low-memory threshold
2428 @see UserSvr::SetMemoryThresholds()
2430 EChangesLowMemory=0x80,
2433 On systems that support data paging, this is generated where the thrashing level crosses one of
2434 the specified threshold values.
2436 EChangesThrashLevel=0x100,
2438 /**********************************************************************************
2439 ** IF YOU ADD A NEW VALUE HERE, YOU NEED TO UPDATE DChangeNotifier CONSTRUCTOR **
2440 **********************************************************************************/
2450 Defines a pointer to a thread function which takes a pointer of
2451 type TAny and returns a TInt.
2453 A function of this type is passed as parameter to RThread::Create()
2454 when creating a thread. Control passes to this function when the thread
2455 is first scheduled for execution.
2459 typedef TInt (*TThreadFunction)(TAny*);
2468 Defines a function that takes no arguments but returns a TInt.
2470 This is a type which is returned from a call to RLibrary::Lookup().
2474 typedef TInt (*TLibraryFunction)();
2483 Defines a function that takes a single argument of type TInt and returns a TInt.
2485 This is a type which is returned from a call to RLibrary::EntryPoint().
2489 typedef TInt (*TLibraryEntry)(TInt);
2497 Defines an exception handler function which takes a TExcType as an argument,
2500 A function of this type is an exception handler used by member functions
2501 of a thread handle, RThread.
2506 typedef void (*TExceptionHandler)(TExcType);
2511 // masking constants
2517 One of a set of flags that categorizes exceptions - associated with
2518 the abort exception only.
2520 @see RThread::SetExceptionHandler()
2521 @see RThread::ModifyExceptionMask()
2523 const TUint KExceptionAbort=0x01;
2532 One of a set of flags that categorizes exceptions - associated with
2533 the kill exception only.
2535 @see RThread::SetExceptionHandler()
2536 @see RThread::ModifyExceptionMask()
2538 const TUint KExceptionKill=0x02;
2547 One of a set of flags that categorizes exceptions - general
2548 and user exceptions.
2550 @see RThread::SetExceptionHandler()
2551 @see RThread::ModifyExceptionMask()
2553 const TUint KExceptionUserInterrupt=0x04;
2562 One of a set of flags that categorizes exceptions - exceptions caused
2563 by illegal floating point operations. This exception is not guaranteed
2564 to be raised when a hardware floating point implementation is in use.
2566 @see RThread::SetExceptionHandler()
2567 @see RThread::ModifyExceptionMask()
2569 const TUint KExceptionFpe=0x08;
2578 One of a set of flags that categorizes exceptions - exceptions associated
2579 with executing instructions; includes protection faults,
2580 illegal instruction codes, page faults etc
2582 @see RThread::SetExceptionHandler()
2583 @see RThread::ModifyExceptionMask()
2585 const TUint KExceptionFault=0x10;
2594 One of a set of flags that categorizes exceptions - exceptions caused
2595 by illegal operations on integer values.
2597 const TUint KExceptionInteger=0x20;
2606 One of a set of flags that categorizes exceptions - exceptions raised
2607 when debugging code.
2609 @see RThread::SetExceptionHandler()
2610 @see RThread::ModifyExceptionMask()
2612 const TUint KExceptionDebug=0x40;
2621 Aligns the specified value on the boundary defined by __Size.
2622 This is usually 4 for byte alignment or 2 for double-byte alignment.
2624 @param s The value to be aligned.
2626 #define __Align(s) ((((s)+__Size-1)/__Size)*__Size)
2635 Defines the type of environment data passed to a process
2636 when that process is created.
2638 The data can be either a handle or just binary data.
2640 enum TProcessParameterType
2649 // bitwise constants
2655 Constant that defines the specified bit value.
2657 const TUint32 KBit0= 0x00000001;
2666 Constant that defines the specified bit value.
2668 const TUint32 KBit1= 0x00000002;
2677 Constant that defines the specified bit value.
2679 const TUint32 KBit2= 0x00000004;
2688 Constant that defines the specified bit value.
2690 const TUint32 KBit3= 0x00000008;
2699 Constant that defines the specified bit value.
2701 const TUint32 KBit4= 0x00000010;
2710 Constant that defines the specified bit value.
2712 const TUint32 KBit5= 0x00000020;
2721 Constant that defines the specified bit value.
2723 const TUint32 KBit6= 0x00000040;
2732 Constant that defines the specified bit value.
2734 const TUint32 KBit7= 0x00000080;
2743 Constant that defines the specified bit value.
2745 const TUint32 KBit8= 0x00000100;
2754 Constant that defines the specified bit value.
2756 const TUint32 KBit9= 0x00000200;
2765 Constant that defines the specified bit value.
2767 const TUint32 KBit10=0x00000400;
2776 Constant that defines the specified bit value.
2778 const TUint32 KBit11=0x00000800;
2787 Constant that defines the specified bit value.
2789 const TUint32 KBit12=0x00001000;
2798 Constant that defines the specified bit value.
2800 const TUint32 KBit13=0x00002000;
2809 Constant that defines the specified bit value.
2811 const TUint32 KBit14=0x00004000;
2820 Constant that defines the specified bit value.
2822 const TUint32 KBit15=0x00008000;
2831 Constant that defines the specified bit value.
2833 const TUint32 KBit16=0x00010000;
2842 Constant that defines the specified bit value.
2844 const TUint32 KBit17=0x00020000;
2853 Constant that defines the specified bit value.
2855 const TUint32 KBit18=0x00040000;
2864 Constant that defines the specified bit value.
2866 const TUint32 KBit19=0x00080000;
2875 Constant that defines the specified bit value.
2877 const TUint32 KBit20=0x00100000;
2886 Constant that defines the specified bit value.
2888 const TUint32 KBit21=0x00200000;
2897 Constant that defines the specified bit value.
2899 const TUint32 KBit22=0x00400000;
2908 Constant that defines the specified bit value.
2910 const TUint32 KBit23=0x00800000;
2919 Constant that defines the specified bit value.
2921 const TUint32 KBit24=0x01000000;
2930 Constant that defines the specified bit value.
2932 const TUint32 KBit25=0x02000000;
2941 Constant that defines the specified bit value.
2943 const TUint32 KBit26=0x04000000;
2952 Constant that defines the specified bit value.
2954 const TUint32 KBit27=0x08000000;
2963 Constant that defines the specified bit value.
2965 const TUint32 KBit28=0x10000000;
2974 Constant that defines the specified bit value.
2976 const TUint32 KBit29=0x20000000;
2985 Constant that defines the specified bit value.
2987 const TUint32 KBit30=0x40000000;
2996 Constant that defines the specified bit value.
2998 const TUint32 KBit31=0x80000000;
3007 Constant that defines the specified bit value.
3009 This is often used as a bit mask.
3011 const TUint32 KSet32=0xffffffff;
3021 Constant that defines the specified bit value.
3023 This is often used as a bit mask.
3025 const TUint32 KClear32=0x00000000;
3034 Constant that defines the specified value.
3036 const TInt KKilo=1024;
3045 Constant that defines the specified value.
3047 const TInt KMega=1024*1024;
3056 Client/Server Session types.
3058 enum TIpcSessionType
3060 // These values are used at session creation time to describe the extent to which
3061 // the new session may be shared.
3063 // They are *also* used at server creation time, to specify the *maximum* degree
3064 // of session sharability that the server supports. Thus, if a server instance was
3065 // created with mode EIpcSession_Sharable, you can open Sharable or Unsharable
3066 // sessions with it, but not globally sharable ones.
3067 EIpcSession_Unsharable = 0x00000000,
3068 EIpcSession_Sharable = 0x00000001, // sharable within one process
3069 EIpcSession_GlobalSharable = 0x00000002 // sharable across processes
3074 EServerRole_Default = 0, // No role specified; treated as Standalone
3075 EServerRole_Standalone, // Explicitly neither Master nor Slave
3076 EServerRole_Master, // Master: may transfer sessions to a Slave
3077 EServerRole_Slave // Slave: accepts sessions from the Master
3082 // The first few bits specify whether memory referred to by descriptors
3083 // passed from the client to the server should automatically be pinned
3084 // All other bits are reserved for future expansion ...
3085 EServerOpt_PinClientDescriptorsDefault = 0x00000000, /**<@internalComponent*/
3086 EServerOpt_PinClientDescriptorsEnable = 0x00000004, /**<@internalComponent*/
3087 EServerOpt_PinClientDescriptorsDisable = 0x00000008, /**<@internalComponent*/
3088 EServerOpt_PinClientDescriptorsMask = 0x0000000c /**<@internalComponent*/
3098 const TInt KNullDebugPort=-2;
3102 A constant which represents a thread ID which will never be assigned to a thread.
3103 I.e. The following statement is always true; RThread::Id()!=KNullThreadId
3108 const TUint KNullThreadId = 0xffffffffu;
3113 A constant which represents a process ID which will never be assigned to a process.
3114 I.e. The following statement is always true; RProcess::Id()!=KNullProcessId
3119 const TUint KNullProcessId = 0xffffffffu;
3127 Hardware floating point types.
3129 enum TFloatingPointType
3131 /** No hardware floating point. */
3137 /** ARM VFPv3-D16 (VFP only, no NEON) */
3147 Hardware floating point execution modes.
3149 enum TFloatingPointMode
3152 Run in the fastest mode available - results of calculations may not be
3153 exactly as the IEEE standard in some cases. On ARM VFPv2 hardware this
3154 corresponds to RunFast mode.
3159 Perform all calculations as specified in the IEEE standard, but do not
3160 generate floating point exceptions. This is compatible with the Java
3161 floating point model. This is the default.
3163 EFpModeIEEENoExceptions=1
3173 Hardware floating point rounding modes.
3175 enum TFloatingPointRoundingMode
3178 Round to the nearest value. This is the default.
3180 EFpRoundToNearest=0,
3183 Round toward positive infinity.
3185 EFpRoundToPlusInfinity=1,
3188 Round toward negative infinity.
3190 EFpRoundToMinusInfinity=2,
3205 #include <e32capability.h>
3207 #ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
3208 #include <e32const_private.h>