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 >
Pascal/Delphi Source File  |  1997-07-08  |  202b  |  14 lines

  1. program Video;
  2.  
  3. uses
  4.   Forms, Graphics, vidmain;
  5.  
  6. {$r Video.scu}
  7.  
  8. begin
  9.   Application.Create;
  10.   Application.CreateForm (TMainForm, MainForm);
  11.   Application.Run;
  12.   Application.Destroy;
  13. end.
  14.