Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
lazarus / usr / share / lazarus / 1.6 / tools / apiwizz / apiwizz.pp
Size: Mime:
{  $Id: apiwizz.pp 7541 2005-08-22 12:30:03Z vincents $  }
{
 /***************************************************************************
                                 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.