/* File: QTime.c Written by: Keith Gurganus Modified by: Sumit Chawla Copyright: © 1997 by Apple Computer, Inc., all rights reserved. */ #ifndef __QTIME__ #define __QTIME__ typedef struct{ char filename[255]; Movie theMovie; MovieController theMC; Boolean movieOpened; HWND theHwnd; }MovieStuff; BOOL OpenMovie(HWND hwnd, MovieStuff *movieStuff); void CloseMovie(MovieStuff *movieStuff); BOOL GetFile(char *fileName); void SetWindowTitle(HWND hWnd, unsigned char *theFullPath); void GetFileNameFromFullPath(unsigned char *theFullPath, unsigned char *fileName); #endif