home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
sibdemo3.zip
/
SAMPLES.DAT
/
SAMPLES
/
MMEDIA
/
VIDEO
/
VIDEO.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1997-07-08
|
202b
|
14 lines
program Video;
uses
Forms, Graphics, vidmain;
{$r Video.scu}
begin
Application.Create;
Application.CreateForm (TMainForm, MainForm);
Application.Run;
Application.Destroy;
end.