Added the missing support for static on the televisions.

This commit is contained in:
Steven Fuller 2008-10-05 21:43:28 -07:00 committed by Patryk Obara
parent 55ddb88c8e
commit e69698d11e
7 changed files with 435 additions and 64 deletions

View file

@ -107,6 +107,14 @@ typedef struct RECT
int bottom;
} RECT;
typedef struct PALETTEENTRY
{
BYTE peRed;
BYTE peGreen;
BYTE peBlue;
BYTE peFlags;
} PALETTEENTRY;
#if !defined(__INTEL_COMPILER)
typedef int64_t __int64;
#else