mirror of
https://github.com/reactos/reactos.git
synced 2025-06-25 01:49:43 +00:00
[MSVIDC32]
* Sync with Wine 1.7.17. CORE-8080 svn path=/trunk/; revision=62920
This commit is contained in:
parent
eb60a4d16e
commit
00454e6aba
2 changed files with 5 additions and 5 deletions
|
@ -71,7 +71,7 @@ typedef BYTE uint8_t;
|
|||
|
||||
typedef struct Msvideo1Context {
|
||||
DWORD dwMagic;
|
||||
int mode_8bit; /* if it's not 8-bit, it's 16-bit */
|
||||
BOOL mode_8bit; /* if it's not 8-bit, it's 16-bit */
|
||||
} Msvideo1Context;
|
||||
|
||||
static void
|
||||
|
@ -374,12 +374,12 @@ static LRESULT CRAM_DecompressBegin( Msvideo1Context *info, LPBITMAPINFO in, LPB
|
|||
|
||||
TRACE("bitmap is %d bpp\n", in->bmiHeader.biBitCount);
|
||||
if( in->bmiHeader.biBitCount == 8 )
|
||||
info->mode_8bit = 1;
|
||||
info->mode_8bit = TRUE;
|
||||
else if( in->bmiHeader.biBitCount == 16 )
|
||||
info->mode_8bit = 0;
|
||||
info->mode_8bit = FALSE;
|
||||
else
|
||||
{
|
||||
info->mode_8bit = 0;
|
||||
info->mode_8bit = FALSE;
|
||||
FIXME("Unsupported output format %i\n", in->bmiHeader.biBitCount);
|
||||
}
|
||||
|
||||
|
|
|
@ -132,7 +132,7 @@ reactos/dll/win32/mstask # Synced to Wine-1.7.1
|
|||
reactos/dll/win32/msvcrt20 # Out of sync
|
||||
reactos/dll/win32/msvcrt40 # Out of sync
|
||||
reactos/dll/win32/msvfw32 # Synced to Wine-1.7.1
|
||||
reactos/dll/win32/msvidc32 # Synced to Wine-1.7.1
|
||||
reactos/dll/win32/msvidc32 # Synced to Wine-1.7.17
|
||||
reactos/dll/win32/msxml # Synced to Wine-1.7.1
|
||||
reactos/dll/win32/msxml2 # Synced to Wine-1.7.1
|
||||
reactos/dll/win32/msxml3 # Synced to Wine-1.7.1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue