0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 20:03:10 +02:00

workaround for Alpha - by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3537 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
arpi 2001-12-16 21:52:41 +00:00
parent d5772744df
commit 15ab525b04
2 changed files with 11 additions and 11 deletions

View File

@ -19,17 +19,17 @@ typedef struct __attribute__((__packed__))
#define _BITMAPINFOHEADER_
typedef struct __attribute__((__packed__))
{
long biSize;
long biWidth;
long biHeight;
int biSize;
int biWidth;
int biHeight;
short biPlanes;
short biBitCount;
long biCompression;
long biSizeImage;
long biXPelsPerMeter;
long biYPelsPerMeter;
long biClrUsed;
long biClrImportant;
int biCompression;
int biSizeImage;
int biXPelsPerMeter;
int biYPelsPerMeter;
int biClrUsed;
int biClrImportant;
} BITMAPINFOHEADER, *PBITMAPINFOHEADER, *LPBITMAPINFOHEADER;
typedef struct {
BITMAPINFOHEADER bmiHeader;

View File

@ -150,8 +150,8 @@ typedef void VOID;
typedef int INT;
typedef unsigned int UINT;
typedef unsigned short WORD;
typedef unsigned long DWORD;
typedef unsigned long ULONG;
typedef unsigned int DWORD;
typedef unsigned int ULONG;
typedef unsigned char BYTE;
typedef long LONG;
typedef short SHORT;