home *** CD-ROM | disk | FTP | other *** search
- /**********************************************************************/
- /* */
- /* vcrS.c : Some simple routines to record stuff on screen to VCR. */
- /* - General routines not provided. */
- /* - fill in routines as required for hardware used. See vcr.c for */
- /* example. */
- /* */
- /* Copyright (C) 1992, Bernard Kwok */
- /* All rights reserved. */
- /* Revision 1.0 */
- /* May, 1992 */
- /**********************************************************************/
- #include <stdio.h>
- #include "vcr.h"
-
- /* Setup parameters for recording */
- void vcr_set_mode(mode) int mode; {}
-
- /* Start recording */
- void vcr_start_record() {}
-
- /* Window setup (call before calling winopen). Fixed size at lower left. */
- void vcr_setup_window(bord) int bord; { }
-
- /* Once window is up, set video parameters */
- void vcr_start_video() {}
-
- /* Grab whats on the window. Do after evey draw, and swapbuffer. */
- void vcr_grab() {}
-
- /* Stop recording */
- void vcr_stop_record() {}
-
- /* Reset video parameters */
- void vcr_end_video() {}
-