Two debug messages clarified, one useless prototype removed.
This commit is contained in:
parent
e00d7d96c2
commit
720cab6696
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue