File : gnatcom-icreatetypelib_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 L I B _ 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;
with GNATCOM.BSTR;
package body GNATCOM.ICreateTypeLib_Interface is
function CreateTypeLib
(SK : in GNATCOM.Types.SYSKIND;
FN : in GNATCOM.Types.BSTR;
CT : access GNATCOM.Types.Pointer_To_ICreateTypeLib)
return GNATCOM.Types.HRESULT;
pragma Import (StdCall, CreateTypeLib, "CreateTypeLib");
procedure Create_Type_Library
(This : in out ICreateTypeLib_Type;
File_Name : in String)
is
Name : GNATCOM.Types.BSTR := GNATCOM.BSTR.To_BSTR (File_Name);
pTLib : aliased GNATCOM.Types.Pointer_To_ICreateTypeLib;
begin
GNATCOM.Errors.Error_Check
(CreateTypeLib (GNATCOM.Types.SYS_WIN32,
Name,
pTLib'Access));
GNATCOM.BSTR.Free (Name);
Attach (This, pTLib);
end Create_Type_Library;
procedure Initialize (This : in out ICreateTypeLib_Type) is
begin
Set_IID (This, GNATCOM.Types.IID_ICreateTypeLib);
end Initialize;
function Pointer (This : ICreateTypeLib_Type)
return GNATCOM.Types.Pointer_To_ICreateTypeLib
is
begin
return To_Pointer_To_ICreateTypeLib (Address (This));
end Pointer;
procedure Attach (This : in out ICreateTypeLib_Type;
Pointer : in GNATCOM.Types.Pointer_To_ICreateTypeLib)
is
begin
Attach (This, GNATCOM.Interface.To_Pointer_To_IUnknown
(Pointer.all'Address));
end Attach;
procedure CreateTypeInfo
(This : ICreateTypeLib_Type;
szName : GNATCOM.Types.LPWSTR;
tkind : GNATCOM.Types.TYPEKIND;
ppCTInfo : GNATCOM.Types.Pointer_To_Pointer_To_ICreateTypeInfo)
is
begin
GNATCOM.Errors.Error_Check
(Pointer (This).Vtbl.CreateTypeInfo
(Pointer (This),
szName,
tkind,
ppCTInfo));
end CreateTypeInfo;
procedure SetName
(This : ICreateTypeLib_Type;
szName : GNATCOM.Types.LPWSTR)
is
begin
GNATCOM.Errors.Error_Check
(Pointer (This).Vtbl.SetName
(Pointer (This),
szName));
end SetName;
procedure SetVersion
(This : ICreateTypeLib_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 SetGuid
(This : ICreateTypeLib_Type;
guid : GNATCOM.Types.Pointer_To_GUID)
is
begin
GNATCOM.Errors.Error_Check
(Pointer (This).Vtbl.SetGuid
(Pointer (This),
guid));
end SetGuid;
procedure SetDocString
(This : ICreateTypeLib_Type;
szDoc : GNATCOM.Types.LPWSTR)
is
begin
GNATCOM.Errors.Error_Check
(Pointer (This).Vtbl.SetDocString
(Pointer (This),
szDoc));
end SetDocString;
procedure SetHelpFileName
(This : ICreateTypeLib_Type;
szHelpFileName : GNATCOM.Types.LPWSTR)
is
begin
GNATCOM.Errors.Error_Check
(Pointer (This).Vtbl.SetHelpFileName
(Pointer (This),
szHelpFileName));
end SetHelpFileName;
procedure SetHelpContext
(This : ICreateTypeLib_Type;
dwHelpContext : Interfaces.C.unsigned_long)
is
begin
GNATCOM.Errors.Error_Check
(Pointer (This).Vtbl.SetHelpContext
(Pointer (This),
dwHelpContext));
end SetHelpContext;
procedure SetLcid
(This : ICreateTypeLib_Type;
lcid : Interfaces.C.unsigned_long)
is
begin
GNATCOM.Errors.Error_Check
(Pointer (This).Vtbl.SetLcid
(Pointer (This),
lcid));
end SetLcid;
procedure SetLibFlags
(This : ICreateTypeLib_Type;
uLibFlags : Interfaces.C.unsigned)
is
begin
GNATCOM.Errors.Error_Check
(Pointer (This).Vtbl.SetLibFlags
(Pointer (This),
uLibFlags));
end SetLibFlags;
procedure SaveAllChanges
(This : ICreateTypeLib_Type)
is
begin
GNATCOM.Errors.Error_Check
(Pointer (This).Vtbl.SaveAllChanges
(Pointer (This)));
end SaveAllChanges;
end GNATCOM.ICreateTypeLib_Interface;