File : gnatcom-itypeinfo_interface.ads
------------------------------------------------------------------------------
-- --
-- GNATCOM - Ada 95 COM/DCOM/COM+ Development Framework and Tools --
-- --
-- G N A T C O M . I T Y P E I N F O _ I N T E R F A C E --
-- --
-- S p e c --
-- --
-- $Revision: 1.3 $
-- --
-- Copyright (C) 1999, 2000, 2001 David Botton --
-- --
-- This is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. It is distributed in the hope that it will be useful, but WITHOUT --
-- ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or --
-- FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with this; see file COPYING. If not, write --
-- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
-- MA 02111-1307, USA. --
-- --
-- As a special exception, if other files instantiate generics from this --
-- unit, or you link this unit with other files to produce an executable, --
-- this unit does not by itself cause the resulting executable to be --
-- covered by the GNU General Public License. This exception does not --
-- however invalidate any other reasons why the executable file might be --
-- covered by the GNU Public License. --
-- --
-- More information about GNATCOM and the most current public version can --
-- be located on the web at http://www.adapower.com/gnatcom --
-- --
-- Support for GNATCOM is available from Ada Core Technologies, Inc. --
-- --
-- In the U.S., contact Ada Core Technologies at: --
-- Tel: +1 (212) 620 7300 ext 117 --
-- Fax: +1 (212) 807 0162 --
-- Email: sales@gnat.com --
-- --
-- In Europe and elsewhere, contact ACT Europe at: --
-- Tel: +33 1 49 70 67 16 --
-- Fax: +33 1 49 70 05 52 --
-- Email: sales@act-europe.fr --
------------------------------------------------------------------------------
with Ada.Unchecked_Conversion;
with System;
with Interfaces.C;
with GNATCOM.Interface;
with GNATCOM.Types;
package GNATCOM.ITypeInfo_Interface is
type ITypeInfo_Type is new GNATCOM.Interface.Interface_Type
with null record;
procedure Initialize (This : in out ITypeInfo_Type);
function Pointer (This : ITypeInfo_Type)
return GNATCOM.Types.Pointer_To_ITypeInfo;
function To_Pointer_To_ITypeInfo is new Ada.Unchecked_Conversion
(System.Address, GNATCOM.Types.Pointer_To_ITypeInfo);
procedure Attach
(This : in out ITypeInfo_Type;
Pointer : GNATCOM.Types.Pointer_To_ITypeInfo);
function GetContainingTypeLib
(This : ITypeInfo_Type;
pIndex : GNATCOM.Types.Pointer_To_int)
return GNATCOM.Types.Pointer_To_ITypeLib;
procedure GetDllEntry
(This : ITypeInfo_Type;
memid : Interfaces.C.long;
invkind : GNATCOM.Types.INVOKEKIND;
pBstrDllName : GNATCOM.Types.Pointer_To_BSTR;
pBstrName : GNATCOM.Types.Pointer_To_BSTR;
pwOrdinal : GNATCOM.Types.Pointer_To_short);
procedure GetDocumentation
(This : ITypeInfo_Type;
memid : Interfaces.C.long;
pBstrName : GNATCOM.Types.Pointer_To_BSTR;
pBstrDocString : GNATCOM.Types.Pointer_To_BSTR;
pdwHelpContext : GNATCOM.Types.Pointer_To_unsigned_long;
pBstrHelpFile : GNATCOM.Types.Pointer_To_BSTR);
function GetFuncDesc
(This : ITypeInfo_Type;
index : Interfaces.C.int)
return GNATCOM.Types.Pointer_To_FUNCDESC;
function GetImplTypeFlags
(This : ITypeInfo_Type;
index : Interfaces.C.int)
return Interfaces.C.unsigned;
function GetMops
(This : ITypeInfo_Type;
memid : Interfaces.C.long)
return GNATCOM.Types.BSTR;
procedure GetNames
(This : ITypeInfo_Type;
memid : Interfaces.C.long;
rgBstrNames : GNATCOM.Types.Pointer_To_BSTR_PARAM_ARRAY;
cMaxNames : Interfaces.C.int;
pcNames : GNATCOM.Types.Pointer_To_int);
function GetRefTypeInfo
(This : ITypeInfo_Type;
hreftype : Interfaces.C.unsigned_long)
return GNATCOM.Types.Pointer_To_ITypeInfo;
function GetRefTypeOfImplType
(This : ITypeInfo_Type;
index : Interfaces.C.int)
return Interfaces.C.unsigned_long;
function GetTypeAttr
(This : ITypeInfo_Type)
return GNATCOM.Types.Pointer_To_TYPEATTR;
function GetTypeComp
(This : ITypeInfo_Type)
return GNATCOM.Types.Pointer_To_ITypeComp;
function GetVarDesc
(This : ITypeInfo_Type;
index : Interfaces.C.int)
return GNATCOM.Types.Pointer_To_VARDESC;
procedure ReleaseTypeAttr
(This : ITypeInfo_Type;
pTypeAttr : GNATCOM.Types.Pointer_To_TYPEATTR);
procedure ReleaseFuncDesc
(This : ITypeInfo_Type;
pFuncDesc : GNATCOM.Types.Pointer_To_FUNCDESC);
procedure ReleaseVarDesc
(This : ITypeInfo_Type;
pVarDesc : GNATCOM.Types.Pointer_To_VARDESC);
function GetName
(This : ITypeInfo_Type)
return String;
-- Simplifies retrieving the type name of an ITypeInfo
function GetDocumentation
(This : ITypeInfo_Type)
return String;
-- Simplifies retrieving the type Documentation of an ITypeInfo
function GetTypeKind
(This : ITypeInfo_Type)
return GNATCOM.Types.TYPEKIND;
-- Simplifies retrieving the type kind for the ITypeInfo
function GetFunctionName
(This : ITypeInfo_Type;
Desc : GNATCOM.Types.Pointer_To_FUNCDESC)
return String;
-- Returns the function name based on its invocation type
-- INVOKE_FUNC => Name
-- INVOKE_PROPERTYGET => Get_Name
-- INVOKE_PROPERTYPUT => Put_Name
-- INVOKE_PROPERTYPUTREF => PutRef_Name
end GNATCOM.ITypeInfo_Interface;