home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Graphics / Viewers / VideoStreamV1.0 / Source / MPEGView.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-06-12  |  536 b   |  29 lines

  1. /*
  2.  * Copyright 1994, Black Adder Research, Inc.  This source code may be
  3.  * redistributed and modified with one restriction - do not claim that 
  4.  * you wrote it.
  5.  *
  6.  * Black Adder Research, Inc.
  7.  * 730 Norell Ave. North
  8.  * Stillwater, MN  55082
  9.  * 
  10.  */
  11.  
  12. #import <appkit/View.h>
  13. #import <sys/param.h>
  14.  
  15. @interface MPEGView:View
  16. {
  17.     id theBitmap;
  18.     char *theData;
  19.     char mpgFile[MAXPATHLEN];
  20. }
  21.  
  22. - initSize: (const NXSize *) aSize;
  23. - runFromFile: (char *) mpegFile;
  24. - runAgain;
  25. - drawSelf:(const NXRect *)rects :(int)rectCount;
  26. - free;
  27.  
  28. @end
  29.