Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
720cab66
Commit
720cab66
authored
Dec 11, 1998
by
Marcus Meissner
Committed by
Alexandre Julliard
Dec 11, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Two debug messages clarified, one useless prototype removed.
parent
e00d7d96
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
3 deletions
+11
-3
pe_image.h
include/pe_image.h
+0
-1
ole2nls.c
ole/ole2nls.c
+10
-1
file.c
win32/file.c
+1
-1
No files found.
include/pe_image.h
View file @
720cab66
...
...
@@ -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
);
...
...
ole/ole2nls.c
View file @
720cab66
...
...
@@ -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
)
)
...
...
win32/file.c
View file @
720cab66
...
...
@@ -154,7 +154,7 @@ HFILE32 WINAPI CreateFile32A(LPCSTR filename, DWORD access, DWORD sharing,
filename
+=
4
;
if
(
!
strncmp
(
filename
,
"UNC"
,
3
))
{
FIXME
(
file
,
"UNC name
s not supported.
\n
"
);
FIXME
(
file
,
"UNC name
(%s) not supported.
\n
"
,
filename
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
HFILE_ERROR32
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment