msvfw32: Don't use strncasecmp.
Signed-off-by: Piotr Caban <piotr@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
87a6f2fc0f
commit
1278355715
@ -35,6 +35,7 @@
|
|||||||
#include "winreg.h"
|
#include "winreg.h"
|
||||||
#include "winnls.h"
|
#include "winnls.h"
|
||||||
#include "wingdi.h"
|
#include "wingdi.h"
|
||||||
|
#include "winternl.h"
|
||||||
#include "winuser.h"
|
#include "winuser.h"
|
||||||
#include "commdlg.h"
|
#include "commdlg.h"
|
||||||
#include "vfw.h"
|
#include "vfw.h"
|
||||||
@ -220,7 +221,7 @@ static int compare_fourcc(DWORD fcc1, DWORD fcc2)
|
|||||||
char fcc_str2[4];
|
char fcc_str2[4];
|
||||||
fourcc_to_string(fcc_str1, fcc1);
|
fourcc_to_string(fcc_str1, fcc1);
|
||||||
fourcc_to_string(fcc_str2, fcc2);
|
fourcc_to_string(fcc_str2, fcc2);
|
||||||
return strncasecmp(fcc_str1, fcc_str2, 4);
|
return _strnicmp(fcc_str1, fcc_str2, 4);
|
||||||
}
|
}
|
||||||
|
|
||||||
static DWORD get_size_image(LONG width, LONG height, WORD depth)
|
static DWORD get_size_image(LONG width, LONG height, WORD depth)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user