Search
lxdream.org :: lxdream/src/video.h :: diff
lxdream 0.9.1
released Jun 29
Download Now
filename src/video.h
changeset 31:495e480360d7
prev1:eea311cfd33e
next65:9f124c245fc6
author nkeynes
date Mon Dec 26 03:54:55 2005 +0000 (18 years ago)
permissions -rw-r--r--
last change Remove modules.h - move definitions into dream.h
Add source string to output list (taken from module name)
ARM Work in progress
file annotate diff log raw
1.1 --- a/src/video.h Sat Mar 13 00:03:32 2004 +0000
1.2 +++ b/src/video.h Mon Dec 26 03:54:55 2005 +0000
1.3 @@ -1,6 +1,38 @@
1.4 +/**
1.5 + * $Id: video.h,v 1.2 2005-12-25 08:24:07 nkeynes Exp $
1.6 + *
1.7 + * The PC side of the video support (responsible for actually displaying /
1.8 + * rendering frames)
1.9 + *
1.10 + * Copyright (c) 2005 Nathan Keynes.
1.11 + *
1.12 + * This program is free software; you can redistribute it and/or modify
1.13 + * it under the terms of the GNU General Public License as published by
1.14 + * the Free Software Foundation; either version 2 of the License, or
1.15 + * (at your option) any later version.
1.16 + *
1.17 + * This program is distributed in the hope that it will be useful,
1.18 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
1.19 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1.20 + * GNU General Public License for more details.
1.21 + */
1.22 +
1.23 +#ifndef dream_video_H
1.24 +#define dream_video_H
1.25 +
1.26 +#include <stdint.h>
1.27 +
1.28 +#ifdef __cplusplus
1.29 +extern "C" {
1.30 +#endif
1.31
1.32 void video_open( void );
1.33 void video_update_frame( void );
1.34 void video_update_size( int, int, int );
1.35
1.36 extern char *video_data;
1.37 +
1.38 +#ifdef __cplusplus
1.39 +}
1.40 +#endif
1.41 +#endif
.