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
80f1d890
Commit
80f1d890
authored
Oct 03, 2006
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Oct 04, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
w32skrnl: Win64 printf format warning fixes.
parent
52f86323
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
3 deletions
+2
-3
Makefile.in
dlls/w32skrnl/Makefile.in
+0
-1
w32sys.c
dlls/w32skrnl/w32sys.c
+1
-1
win32s16.c
dlls/w32skrnl/win32s16.c
+1
-1
No files found.
dlls/w32skrnl/Makefile.in
View file @
80f1d890
...
@@ -4,7 +4,6 @@ SRCDIR = @srcdir@
...
@@ -4,7 +4,6 @@ SRCDIR = @srcdir@
VPATH
=
@srcdir@
VPATH
=
@srcdir@
MODULE
=
w32skrnl.dll
MODULE
=
w32skrnl.dll
IMPORTS
=
kernel32
IMPORTS
=
kernel32
EXTRADEFS
=
-DWINE_NO_LONG_AS_INT
C_SRCS
=
\
C_SRCS
=
\
w32skernel.c
\
w32skernel.c
\
...
...
dlls/w32skrnl/w32sys.c
View file @
80f1d890
...
@@ -83,7 +83,7 @@ WORD WINAPI GetPEResourceTable16(
...
@@ -83,7 +83,7 @@ WORD WINAPI GetPEResourceTable16(
* LoadPeResource (W32SYS.11)
* LoadPeResource (W32SYS.11)
*/
*/
DWORD
WINAPI
LoadPeResource16
(
WORD
x
,
SEGPTR
y
)
{
DWORD
WINAPI
LoadPeResource16
(
WORD
x
,
SEGPTR
y
)
{
FIXME
(
"(0x%04x,0x%08
l
x),stub!
\n
"
,
x
,
y
);
FIXME
(
"(0x%04x,0x%08x),stub!
\n
"
,
x
,
y
);
return
0
;
return
0
;
}
}
...
...
dlls/w32skrnl/win32s16.c
View file @
80f1d890
...
@@ -83,7 +83,7 @@ BOOL WINAPI ContinueDebugEvent16(DWORD pid, DWORD tid, DWORD status)
...
@@ -83,7 +83,7 @@ BOOL WINAPI ContinueDebugEvent16(DWORD pid, DWORD tid, DWORD status)
BOOL
WINAPI
ReadProcessMemory16
(
HANDLE
process
,
LPCVOID
addr
,
LPVOID
buffer
,
BOOL
WINAPI
ReadProcessMemory16
(
HANDLE
process
,
LPCVOID
addr
,
LPVOID
buffer
,
DWORD
size
,
LPDWORD
bytes_read
)
DWORD
size
,
LPDWORD
bytes_read
)
{
{
return
ReadProcessMemory
(
process
,
addr
,
buffer
,
size
,
bytes_read
);
return
ReadProcessMemory
(
process
,
addr
,
buffer
,
size
,
(
SIZE_T
*
)
bytes_read
);
}
}
/***********************************************************************
/***********************************************************************
...
...
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