home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-12-05 | 466 b | 26 lines | [TEXT/MPS ] |
- /*
- File: mtb13.c
- Contains: Update Functions
- Written by: DTS and QT Engineering
- Copyright: © 1992-1994 by Apple Computer, Inc., all rights reserved.
- Change History (most recent first):
- <1> 12/4/94 khs changed the format of the file to the new look and feel
- To Do:
- */
-
-
- // INCLUDES
- #include "mtb.h"
-
-
- // FUNCTIONS
- void DoUpdate(WindowPtr theWindow,
- Movie theMovie)
- {
- BeginUpdate(theWindow);
- UpdateMovie(theMovie);
- EndUpdate(theWindow);
- }
-
-
-