1
mirror of https://github.com/mpv-player/mpv synced 2024-10-22 08:51:57 +02:00
mpv/Gui/bitmap/bitmap.h
pontscho 2a59fbf120 add gui support to config scripts, and fixed some warning.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1992 b3059339-0415-0410-9bf9-f77b7e298cf2
2001-09-27 17:40:43 +00:00

22 lines
355 B
C

#ifndef __MYSAMPLE
#define __MYSAMPLE
typedef struct _txSample
{
unsigned int Width;
unsigned int Height;
unsigned int BPP;
unsigned long ImageSize;
char * Image;
} txSample;
#include "tga/tga.h"
#include "bmp/bmp.h"
#include "png/png.h"
extern int bpRead( char * fname, txSample * bf );
extern int conv24to32( txSample * bf );
#endif