[MSRLE32] Sync with Wine Staging 1.7.37. CORE-9246

svn path=/trunk/; revision=67089
This commit is contained in:
Amine Khaldi 2015-04-08 17:12:45 +00:00
parent b072815c05
commit 4ff7f1b3ae
2 changed files with 2 additions and 5 deletions

View file

@ -36,13 +36,10 @@ static HINSTANCE MSRLE32_hModule = 0;
#define compare_fourcc(fcc1, fcc2) (((fcc1)^(fcc2))&~0x20202020)
#define ABS(a) ((a) < 0 ? -(a) : (a))
#define SQR(a) ((a) * (a))
static inline WORD ColorCmp(WORD clr1, WORD clr2)
{
UINT a = clr1 - clr2;
return SQR(a);
return a * a;
}
static inline WORD Intensity(RGBQUAD clr)
{

View file

@ -130,7 +130,7 @@ reactos/dll/win32/msisip # Synced to Wine-1.7.27
reactos/dll/win32/msisys.ocx # Synced to Wine-1.7.27
reactos/dll/win32/msnet32 # Synced to Wine-1.7.27
reactos/dll/win32/mspatcha # Synced to Wine-1.7.27
reactos/dll/win32/msrle32 # Synced to Wine-1.7.27
reactos/dll/win32/msrle32 # Synced to WineStaging-1.7.37
reactos/dll/win32/mssign32 # Synced to Wine-1.7.27
reactos/dll/win32/mssip32 # Synced to Wine-1.7.27
reactos/dll/win32/mstask # Synced to Wine-1.7.27