mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-06 18:24:26 +08:00
12 lines
122 B
ObjectPascal
12 lines
122 B
ObjectPascal
unit generic_types;
|
|
|
|
interface
|
|
|
|
type
|
|
TThreeStateBoolean = (nbUnset, nbFalse, nbTrue);
|
|
|
|
|
|
implementation
|
|
|
|
end.
|