| Name | Unit | Description |
|---|---|---|
| CheckRadixToInt | MPHexEditor | try to find the correct radix (based on prefix/suffix) and return the number, known prefixes/suffixes are: 0x<number>, 0X<number>, $<number>, <number>h, <number>H: radix 16 o<number>, O<number>, 0<number>, <number>o, <number>O: radix 8 %<number>, <number>%: radix 2 otherwise: radix 10 |
| ConvertBinToHex | MPHexEditor | translate binary data to its hex representation (see ConvertHexToBin), (see SwapNibbles for the meaning of the SwapNibbles value) |
| ConvertHexToBin | MPHexEditor | translate a hexadecimal data representation ("a000 cc45 d3 42"...) to binary data (see SwapNibbles for the meaning of the SwapNibbles value) |
| GetTempName | MPHexEditor | get a unique filename in the temporary directory |
| GridCoord | MPHexEditor | convert X and Y into a TGridCoord record |
| IntToOctal | MPHexEditor | translate an integer to an octal string (see also IntToRadix) |
| IntToRadix | MPHexEditor | translate an integer to a radix (base) coded string, e.g. - IntToRadix(100,16) converts into a hexadecimal (number) string - IntToRadix(100,2) converts into a string consisting only of 0 and 1 - IntToRadix(100,8) means IntToOctal hint: Radix must be in the range of 2..16 |
| IntToRadixLen | MPHexEditor | translate an integer to a radix coded string and left fill with 0 (see also IntToRadix) |
| IsKeyDown | MPHexEditor | check whether the given key (VK_...) is currently down |
| Max | MPHexEditor | returns the higer of the two numbers |
| Min | MPHexEditor | returns the lower of the two numbers |
| OctalToInt | MPHexEditor | translate an number string built on radix 8 into an integer (see also RadixToInt) |
| RadixToInt | MPHexEditor | translate a radix coded number string into an integer, e.g. - RadixToInt('0f', 16) => 15 - RadixToInt('755', 8) => 493 |
| TranslateBufferFromAnsi | MPHexEditor | translate data from Ansi to a different character set (see also TMPHTranslationKind)- TType: translate to this character set - aBuffer: pointer to source data - bBuffer: pointer to target data, must be allocated (may equal to aBuffer) - aCount: number of bytes to translate |
| TranslateBufferToAnsi | MPHexEditor | translate data from a different character set to Ansi (see also TranslateBufferFromAnsi) |