File : gnatcom-icreatetypeinfo_interface.adb
------------------------------------------------------------------------------
-- --
-- GNATCOM - Ada 95 COM/DCOM/COM+ Development Framework and Tools --
-- --
-- G N A T C O M . I C R E A T E T Y P E I N F O _ I N T E R F A C E --
-- --
-- B o d y --
-- --
-- $Revision: 1.1 $
-- --
-- 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 GNATCOM.Errors;
package body GNATCOM.ICreateTypeInfo_Interface is
procedure Initialize (This : in out ICreateTypeInfo_Type) is
begin
Set_IID (This, GNATCOM.Types.IID_ICreateTypeInfo);
end Initialize;
function Pointer (This : ICreateTypeInfo_Type)
return GNATCOM.Types.Pointer_To_ICreateTypeInfo
is
begin
return To_Pointer_To_ICreateTypeInfo (Address (This));
end Pointer;
procedure Attach (This : in out ICreateTypeInfo_Type;
Pointer : in GNATCOM.Types.Pointer_To_ICreateTypeInfo)
is
begin
Attach (This, GNATCOM.Interface.To_Pointer_To_IUnknown
(Pointer.all'Address));
end Attach;
procedure SetGuid
(This : ICreateTypeInfo_Type;
guid : GNATCOM.Types.Pointer_To_GUID)
is
begin
GNATCOM.Errors.Error_Check
(Pointer (This).Vtbl.SetGuid
(Pointer (This),
guid));
end SetGuid;
procedure SetTypeFlags
(This : ICreateTypeInfo_Type;
uTypeFlags : Interfaces.C.unsigned)
is
begin
GNATCOM.Errors.Error_Check
(Pointer (This).Vtbl.SetTypeFlags
(Pointer (This),
uTypeFlags));
end SetTypeFlags;
procedure SetDocString
(This : ICreateTypeInfo_Type;
pStrDoc : GNATCOM.Types.LPWSTR)
is
begin
GNATCOM.Errors.Error_Check
(Pointer (This).Vtbl.SetDocString
(Pointer (This),
pStrDoc));
end SetDocString;
procedure SetHelpContext
(This : ICreateTypeInfo_Type;
dwHelpContext : Interfaces.C.unsigned_long)
is
begin
GNATCOM.Errors.Error_Check
(Pointer (This).Vtbl.SetHelpContext
(Pointer (This),
dwHelpContext));
end SetHelpContext;
procedure SetVersion
(This : ICreateTypeInfo_Type;
wMajorVerNum : Interfaces.C.unsigned_short;
wMinorVerNum : Interfaces.C.unsigned_short)
is
begin
GNATCOM.Errors.Error_Check
(Pointer (This).Vtbl.SetVersion
(Pointer (This),
wMajorVerNum,
wMinorVerNum));
end SetVersion;
procedure AddRefTypeInfo
(This : ICreateTypeInfo_Type;
pTInfo : GNATCOM.Types.Pointer_To_ITypeInfo;
phRefType : GNATCOM.Types.Pointer_To_unsigned_long)
is
begin
GNATCOM.Errors.Error_Check
(Pointer (This).Vtbl.AddRefTypeInfo
(Pointer (This),
pTInfo,
phRefType));
end AddRefTypeInfo;
procedure AddFuncDesc
(This : ICreateTypeInfo_Type;
index : Interfaces.C.unsigned;
pFuncDesc : GNATCOM.Types.Pointer_To_FUNCDESC)
is
begin
GNATCOM.Errors.Error_Check
(Pointer (This).Vtbl.AddFuncDesc
(Pointer (This),
index,
pFuncDesc));
end AddFuncDesc;
procedure AddImplType
(This : ICreateTypeInfo_Type;
index : Interfaces.C.unsigned;
hreftype : Interfaces.C.unsigned_long)
is
begin
GNATCOM.Errors.Error_Check
(Pointer (This).Vtbl.AddImplType
(Pointer (This),
index,
hreftype));
end AddImplType;
procedure SetImplTypeFlags
(This : ICreateTypeInfo_Type;
index : Interfaces.C.unsigned;
implTypeFlags : Interfaces.C.int)
is
begin
GNATCOM.Errors.Error_Check
(Pointer (This).Vtbl.SetImplTypeFlags
(Pointer (This),
index,
implTypeFlags));
end SetImplTypeFlags;
procedure SetAlignment
(This : ICreateTypeInfo_Type;
cbAlignment : Interfaces.C.unsigned_short)
is
begin
GNATCOM.Errors.Error_Check
(Pointer (This).Vtbl.SetAlignment
(Pointer (This),
cbAlignment));
end SetAlignment;
procedure SetSchema
(This : ICreateTypeInfo_Type;
pStrSchema : GNATCOM.Types.LPWSTR)
is
begin
GNATCOM.Errors.Error_Check
(Pointer (This).Vtbl.SetSchema
(Pointer (This),
pStrSchema));
end SetSchema;
procedure AddVarDesc
(This : ICreateTypeInfo_Type;
index : Interfaces.C.unsigned;
pVarDesc : GNATCOM.Types.Pointer_To_VARDESC)
is
begin
GNATCOM.Errors.Error_Check
(Pointer (This).Vtbl.AddVarDesc
(Pointer (This),
index,
pVarDesc));
end AddVarDesc;
procedure SetFuncAndParamNames
(This : ICreateTypeInfo_Type;
index : Interfaces.C.unsigned;
rgszNames : GNATCOM.Types.Pointer_To_LPWSTR;
cNames : Interfaces.C.unsigned)
is
begin
GNATCOM.Errors.Error_Check
(Pointer (This).Vtbl.SetFuncAndParamNames
(Pointer (This),
index,
rgszNames,
cNames));
end SetFuncAndParamNames;
procedure SetVarName
(This : ICreateTypeInfo_Type;
index : Interfaces.C.unsigned;
szName : GNATCOM.Types.LPWSTR)
is
begin
GNATCOM.Errors.Error_Check
(Pointer (This).Vtbl.SetVarName
(Pointer (This),
index,
szName));
end SetVarName;
procedure SetTypeDescAlias
(This : ICreateTypeInfo_Type;
pTDescAlias : GNATCOM.Types.Pointer_To_TYPEDESC)
is
begin
GNATCOM.Errors.Error_Check
(Pointer (This).Vtbl.SetTypeDescAlias
(Pointer (This),
pTDescAlias));
end SetTypeDescAlias;
procedure DefineFuncAsDllEntry
(This : ICreateTypeInfo_Type;
index : Interfaces.C.unsigned;
szDllName : GNATCOM.Types.LPWSTR;
szProcName : GNATCOM.Types.LPWSTR)
is
begin
GNATCOM.Errors.Error_Check
(Pointer (This).Vtbl.DefineFuncAsDllEntry
(Pointer (This),
index,
szDllName,
szProcName));
end DefineFuncAsDllEntry;
procedure SetFuncDocString
(This : ICreateTypeInfo_Type;
index : Interfaces.C.unsigned;
szDocString : GNATCOM.Types.LPWSTR)
is
begin
GNATCOM.Errors.Error_Check
(Pointer (This).Vtbl.SetFuncDocString
(Pointer (This),
index,
szDocString));
end SetFuncDocString;
procedure SetVarDocString
(This : ICreateTypeInfo_Type;
index : Interfaces.C.unsigned;
szDocString : GNATCOM.Types.LPWSTR)
is
begin
GNATCOM.Errors.Error_Check
(Pointer (This).Vtbl.SetVarDocString
(Pointer (This),
index,
szDocString));
end SetVarDocString;
procedure SetFuncHelpContext
(This : ICreateTypeInfo_Type;
index : Interfaces.C.unsigned;
dwHelpContext : Interfaces.C.unsigned_long)
is
begin
GNATCOM.Errors.Error_Check
(Pointer (This).Vtbl.SetFuncHelpContext
(Pointer (This),
index,
dwHelpContext));
end SetFuncHelpContext;
procedure SetVarHelpContext
(This : ICreateTypeInfo_Type;
index : Interfaces.C.unsigned;
dwHelpContext : Interfaces.C.unsigned_long)
is
begin
GNATCOM.Errors.Error_Check
(Pointer (This).Vtbl.SetVarHelpContext
(Pointer (This),
index,
dwHelpContext));
end SetVarHelpContext;
procedure SetMops
(This : ICreateTypeInfo_Type;
index : Interfaces.C.unsigned;
bstrMops : GNATCOM.Types.BSTR;
Free : Boolean := True)
is
begin
GNATCOM.Errors.Error_Check
(Pointer (This).Vtbl.SetMops
(Pointer (This),
index,
bstrMops));
if Free then
GNATCOM.Interface.Free (bstrMops);
end if;
end SetMops;
procedure SetTypeIdldesc
(This : ICreateTypeInfo_Type;
pIdlDesc : GNATCOM.Types.Pointer_To_IDLDESC)
is
begin
GNATCOM.Errors.Error_Check
(Pointer (This).Vtbl.SetTypeIdldesc
(Pointer (This),
pIdlDesc));
end SetTypeIdldesc;
procedure LayOut
(This : ICreateTypeInfo_Type)
is
begin
GNATCOM.Errors.Error_Check
(Pointer (This).Vtbl.LayOut
(Pointer (This)));
end LayOut;
end GNATCOM.ICreateTypeInfo_Interface;