You've already forked lazarus-ccr
ws_helper now has the following parameters : ws_helper [-u] [-p] [-b] [-i] [-oPATH] inputFilename -u Generate the pascal translation of the WSDL input file -p Generate service proxy -b Generate service binder -i Generate service minimal implementation -o PATH Relative output directory -a PATH Absolute output directory git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@135 8e941d3f-bd1b-0410-a28a-d453659cc2b4
20 lines
354 B
ObjectPascal
20 lines
354 B
ObjectPascal
program metadata_browser;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
|
cthreads,
|
|
{$ENDIF}{$ENDIF}
|
|
Interfaces, // this includes the LCL widgetset
|
|
Forms
|
|
{ add your units here }, umain, metadata_service_proxy,
|
|
metadata_service;
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TfMain, fMain);
|
|
Application.Run;
|
|
end.
|
|
|