Search
lxdream.org :: lxdream/src/video.h
lxdream 0.9.1
released Jun 29
Download Now
filename src/video.h
changeset 65:9f124c245fc6
prev31:495e480360d7
next94:8d80d9c7cc7d
author nkeynes
date Tue Jan 10 14:00:00 2006 +0000 (18 years ago)
permissions -rw-r--r--
last change Limit block loads to file size
view annotate diff log raw
     1 /**
     2  * $Id: video.h,v 1.3 2006-01-03 12:21:45 nkeynes Exp $
     3  *
     4  * The PC side of the video support (responsible for actually displaying / 
     5  * rendering frames)
     6  *
     7  * Copyright (c) 2005 Nathan Keynes.
     8  *
     9  * This program is free software; you can redistribute it and/or modify
    10  * it under the terms of the GNU General Public License as published by
    11  * the Free Software Foundation; either version 2 of the License, or
    12  * (at your option) any later version.
    13  *
    14  * This program is distributed in the hope that it will be useful,
    15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    17  * GNU General Public License for more details.
    18  */
    20 #ifndef dream_video_H
    21 #define dream_video_H
    23 #include <stdint.h>
    25 #ifdef __cplusplus
    26 extern "C" {
    27 #endif
    29 void video_open( void );
    30 void video_update_frame( void );
    31 void video_update_size( int, int, int );
    33 extern char *video_data;
    34 extern uint32_t video_frame_count;
    36 #ifdef __cplusplus
    37 }
    38 #endif
    39 #endif
.