mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-06 18:24:26 +08:00
14 lines
145 B
ObjectPascal
14 lines
145 B
ObjectPascal
unit generic_types;
|
|
|
|
{$mode delphi}{$H+}
|
|
|
|
interface
|
|
|
|
type
|
|
TThreeStateBoolean = (nbUnset, nbFalse, nbTrue);
|
|
|
|
|
|
implementation
|
|
|
|
end.
|