[Overview][Constants][Types][Classes][Procedures and functions][Variables] |
Callback for converting identifiers to integers.
Source position: classesh.inc line 1614
type TIdentToInt = function( |
const Ident: String; |
var Int: LongInt |
):Boolean; |
TIdentToIntis a callback used to look up identifiers (Ident) and return an integer value corresponding to this identifier (Int). The callback should return Trueif a value corresponding to integer Identwas found, Falseif not.
A callback of type TIdentToIntshould be specified when an integer is registered using the RegisterIntegerConstscall.
|
Registers some integer-to-identifier mappings. |
|
|
Callback for converting integers to identifiers. |