mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 14:17:59 +02:00
39 lines
1.3 KiB
ObjectPascal
39 lines
1.3 KiB
ObjectPascal
{ $Id$ }
|
|
{
|
|
/***************************************************************************
|
|
APIWiZZ.pp
|
|
-------------------
|
|
APIWiZZ is an API wizard to generate WINAPI
|
|
Templates for GTK.
|
|
|
|
Initial Revision : 05-02-2000
|
|
|
|
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
***************************************************************************/
|
|
}
|
|
{
|
|
@author(M. Weustink <marc@dommelstein.net>)
|
|
@created(02-May-2000)
|
|
}
|
|
program APIWizz;
|
|
|
|
uses
|
|
Interfaces,
|
|
Forms,
|
|
APIWizard;
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TApiWizForm, ApiWizForm);
|
|
Application.Run;
|
|
end.
|