home *** CD-ROM | disk | FTP | other *** search
- unit RestHelp;
-
- interface
-
- uses
- {$IFDEF WIN32}Windows,{$ELSE}WinTypes, WinProcs,{$ENDIF}
- Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
- StdCtrls;
-
- type
- TRestructureHelpForm = class(TForm)
- Memo1: TMemo;
- Close: TButton;
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- RestructureHelpForm: TRestructureHelpForm;
-
- implementation
-
- {$R *.DFM}
-
-
- end.
-