home *** CD-ROM | disk | FTP | other *** search
- /*
- * Copyright 1994, Black Adder Research, Inc. This source code may be
- * redistributed and modified with one restriction - do not claim that
- * you wrote it.
- *
- * Black Adder Research, Inc.
- * 730 Norell Ave. North
- * Stillwater, MN 55082
- *
- */
-
- #import <appkit/View.h>
- #import <sys/param.h>
-
- @interface MPEGView:View
- {
- id theBitmap;
- char *theData;
- char mpgFile[MAXPATHLEN];
- }
-
- - initSize: (const NXSize *) aSize;
- - runFromFile: (char *) mpegFile;
- - runAgain;
- - drawSelf:(const NXRect *)rects :(int)rectCount;
- - free;
-
- @end
-