/***************************************************************************** InitQT -- Initialize and Finalize the Quicktime Environment Environment: OS X version 10.1.5 Creation: open Project Builder click file menu -- New Project click "Standard Tool" at the end of the list name=InitQT, directory -- pick one ^click on InitQT -- new Group give it the name "Frameworks" ^click on Frameworks -- choose add frameworks choose QuickTime.framework -- reference style = default ^click on main.c under the "Source" group choose "Show Info" change Reference Style from "Group Relative" to "Project Relative" *****************************************************************************/ /* Include the Quicktime header. ============================= */ #include /* M A I N * */ int main (int argc, char *argv[]) { EnterMovies (); // Initialize Quicktime // . . . (Quicktime commands go here) ExitMovies (); // Finalize Quicktime return (0); } /*============================( End of Source )============================*/