Commit 12783557 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msvfw32: Don't use strncasecmp.

parent 87a6f2fc
......@@ -35,6 +35,7 @@
#include "winreg.h"
#include "winnls.h"
#include "wingdi.h"
#include "winternl.h"
#include "winuser.h"
#include "commdlg.h"
#include "vfw.h"
......@@ -220,7 +221,7 @@ static int compare_fourcc(DWORD fcc1, DWORD fcc2)
char fcc_str2[4];
fourcc_to_string(fcc_str1, fcc1);
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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment