Files
HeidiSQL/source/generic_types.pas

12 lines
122 B
ObjectPascal

unit generic_types;
interface
type
TThreeStateBoolean = (nbUnset, nbFalse, nbTrue);
implementation
end.