Commit 720cab66 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

Two debug messages clarified, one useless prototype removed.

parent e00d7d96
......@@ -29,7 +29,6 @@ extern int PE_unloadImage(HMODULE32 hModule);
extern FARPROC32 PE_FindExportedFunction(
struct _PDB32 *process,struct _wine_modref *wm, LPCSTR funcName, BOOL32 snoop
);
extern void my_wcstombs(char * result, u_short * source, int len);
extern BOOL32 PE_EnumResourceTypes32A(HMODULE32,ENUMRESTYPEPROC32A,LONG);
extern BOOL32 PE_EnumResourceTypes32W(HMODULE32,ENUMRESTYPEPROC32W,LONG);
extern BOOL32 PE_EnumResourceNames32A(HMODULE32,LPCSTR,ENUMRESNAMEPROC32A,LONG);
......
......@@ -2024,7 +2024,16 @@ INT32 WINAPI LCMapString32A(
{
FIXME(string,"(0x%04lx,0x%08lx,%p,%d,%p,%d): "
"unimplemented flags: 0x%08lx\n",
lcid,mapflags,srcstr,srclen,dststr,dstlen,mapflags);
lcid,
mapflags&~(LCMAP_UPPERCASE | LCMAP_LOWERCASE | LCMAP_SORTKEY |
NORM_IGNORECASE | NORM_IGNORENONSPACE | SORT_STRINGSORT |
NORM_IGNOREWIDTH),
srcstr,
srclen,
dststr,
dstlen,
mapflags
);
}
if ( !(mapflags & LCMAP_SORTKEY) )
......
......@@ -154,7 +154,7 @@ HFILE32 WINAPI CreateFile32A(LPCSTR filename, DWORD access, DWORD sharing,
filename += 4;
if (!strncmp(filename, "UNC", 3))
{
FIXME(file, "UNC names not supported.\n");
FIXME(file, "UNC name (%s) not supported.\n",filename);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return HFILE_ERROR32;
}
......
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