mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2026-03-13 09:24:25 +08:00
57 lines
2.3 KiB
ObjectPascal
57 lines
2.3 KiB
ObjectPascal
{-------------------------------------------------------------------------------
|
|
The contents of this file are subject to the Mozilla Public License
|
|
Version 1.1 (the "License"); you may not use this file except in compliance
|
|
with the License. You may obtain a copy of the License at
|
|
http://www.mozilla.org/MPL/
|
|
|
|
Software distributed under the License is distributed on an "AS IS" basis,
|
|
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
|
|
the specific language governing rights and limitations under the License.
|
|
|
|
The Original Code is: SynGen.pas, released 2000-04-19.
|
|
Description: Generator for heigh speed token lists, drived by a simple grammar.
|
|
|
|
The Original Code is based on mwSynGen.pas (previously known as mwLexGen.pas)
|
|
by Martin Waldenburg, part of the mwEdit component suite.
|
|
Portions created by Martin Waldenburg are Copyright (C) 1998 Martin Waldenburg.
|
|
All Rights Reserved.
|
|
|
|
Contributors to the SynEdit and mwEdit projects are listed in the
|
|
Contributors.txt file.
|
|
|
|
Alternatively, the contents of this file may be used under the terms of the
|
|
GNU General Public License Version 2 or later (the "GPL"), in which case
|
|
the provisions of the GPL are applicable instead of those above.
|
|
If you wish to allow use of your version of this file only under the terms
|
|
of the GPL and not to allow others to use your version of this file
|
|
under the MPL, indicate your decision by deleting the provisions above and
|
|
replace them with the notice and other provisions required by the GPL.
|
|
If you do not delete the provisions above, a recipient may use your version
|
|
of this file under either the MPL or the GPL.
|
|
|
|
$Id: SynGen.dpr,v 1.1.1.1.2.2 2004/12/19 19:03:41 maelh Exp $
|
|
|
|
You may retrieve the latest version of this file at the SynEdit home page,
|
|
located at http://SynEdit.SourceForge.net
|
|
|
|
Known Issues:
|
|
-------------------------------------------------------------------------------}
|
|
|
|
program SynGen;
|
|
|
|
uses
|
|
Forms,
|
|
SynGenUnit in 'SynGenUnit.pas' {FrmMain},
|
|
GenLex in 'GenLex.pas',
|
|
HashTableGen in 'HashTableGen.pas' {FrmHashTableGen};
|
|
|
|
{$R *.RES}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.Title := 'SynGen';
|
|
Application.CreateForm(TFrmMain, FrmMain);
|
|
Application.CreateForm(TFrmHashTableGen, FrmHashTableGen);
|
|
Application.Run;
|
|
end.
|