如何从 TGUID 获取接口类型信息?
How to get interface type info from TGUID?
如何从 GUID 获取类型信息?
procedure MyProcedure(const InterfaceId: TGuid);
var
MyTypeInfo: PTypeInfo;
begin
MyTypeInfo := TypeInfo(InterfaceId); //E2133 TYPEINFO standard function expects a type identifier
...
end;
您必须搜索 EXE 中的所有 RTTI。 Delphi 2010 年及以上:
unit RTTI.Utilities;
interface
uses System.TypInfo;
function InterfaceTypeInfoOfGUID(const AGUID : TGUID) : PTypeInfo;
implementation
uses System.RTTI;
function InterfaceTypeInfoOfGUID(const AGUID : TGUID) : PTypeInfo;
var
Context : TRttiContext;
ItemType : TRttiType;
begin
for ItemType in Context.GetTypes do
begin
if ItemType is TRTTIInterfaceType then
begin
if TRTTIInterfaceType(ItemType).GUID = AGUID then
exit(TRTTIInterfaceType(ItemType).Handle);
end
end;
Result := nil;
end;
end.
如何从 GUID 获取类型信息?
procedure MyProcedure(const InterfaceId: TGuid);
var
MyTypeInfo: PTypeInfo;
begin
MyTypeInfo := TypeInfo(InterfaceId); //E2133 TYPEINFO standard function expects a type identifier
...
end;
您必须搜索 EXE 中的所有 RTTI。 Delphi 2010 年及以上:
unit RTTI.Utilities;
interface
uses System.TypInfo;
function InterfaceTypeInfoOfGUID(const AGUID : TGUID) : PTypeInfo;
implementation
uses System.RTTI;
function InterfaceTypeInfoOfGUID(const AGUID : TGUID) : PTypeInfo;
var
Context : TRttiContext;
ItemType : TRttiType;
begin
for ItemType in Context.GetTypes do
begin
if ItemType is TRTTIInterfaceType then
begin
if TRTTIInterfaceType(ItemType).GUID = AGUID then
exit(TRTTIInterfaceType(ItemType).Handle);
end
end;
Result := nil;
end;
end.