lazarus-ccr/wst/trunk/wst_delphi_rtti_utils.pas
inoussa e2e80eac2d Suppress warnings
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@610 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2008-11-24 15:42:58 +00:00

20 lines
328 B
ObjectPascal

unit wst_delphi_rtti_utils;
interface
uses SysUtils, TypInfo;
function GetEnumNameCount(AEnumTypeInfo: PTypeInfo): Integer;
implementation
function GetEnumNameCount(AEnumTypeInfo: PTypeInfo): Integer;
var
T: PTypeData;
begin
T := GetTypeData(AEnumTypeInfo);
Result := ( T^.MaxValue - T^.MinValue ) + 1;
end;
end.