ViewVC Help
View File
|
Revision Log
|
View Changeset
|
Root Listing
root
/
Oni2
/
OniWindowMover
/
Unit2.pas
Revision:
257
Committed:
Sat Nov 1 20:12:29 2008 UTC
(16 years, 11 months ago) by
alloc
Content type:
text/x-pascal
File size:
245 byte(s)
Log Message:
File Contents
#
Content
1
UNIT
Unit2
;
2
INTERFACE
3
USES
4
Windows
,
Messages
,
SysUtils
,
Variants
,
Classes
,
Graphics
,
Controls
,
Forms
,
5
Dialogs
;
6
7
TYPE
8
TForm2
=
Class
(
TForm
)
9
PRIVATE
10
PUBLIC
11
END
;
12
13
VAR
14
Form2
:
TForm2
;
15
16
IMPLEMENTATION
17
{$R *.dfm}
18
19
END
.