Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
fe1374cc
Commit
fe1374cc
authored
Oct 06, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Fix empty function prototypes.
parent
0e67f65c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
kernel16_private.h
dlls/kernel32/kernel16_private.h
+3
-3
wowthunk.c
dlls/kernel32/wowthunk.c
+5
-5
No files found.
dlls/kernel32/kernel16_private.h
View file @
fe1374cc
...
...
@@ -114,7 +114,7 @@ typedef struct
{
WORD
pushw_bp
;
/* pushw %bp */
BYTE
pushl
;
/* pushl $target */
void
(
*
target
)()
;
void
*
target
;
WORD
call
;
/* call CALLFROM16 */
short
callfrom16
;
}
ENTRYPOINT16
;
...
...
@@ -147,8 +147,8 @@ typedef struct _THHOOK
HTASK16
LockTDB
;
/* 14 hLockedTask */
}
THHOOK
;
extern
LONG
__wine_call_from_16
();
extern
void
__wine_call_from_16_regs
();
extern
LONG
__wine_call_from_16
(
void
);
extern
void
__wine_call_from_16_regs
(
void
);
extern
THHOOK
*
pThhook
;
...
...
dlls/kernel32/wowthunk.c
View file @
fe1374cc
...
...
@@ -48,11 +48,11 @@ WINE_DECLARE_DEBUG_CHANNEL(snoop);
extern
DWORD
WINAPI
wine_call_to_16
(
FARPROC16
target
,
DWORD
cbArgs
,
PEXCEPTION_HANDLER
handler
);
extern
void
WINAPI
wine_call_to_16_regs
(
CONTEXT86
*
context
,
DWORD
cbArgs
,
PEXCEPTION_HANDLER
handler
);
extern
void
__wine_call_to_16_ret
(
void
);
extern
void
CALL32_CBClient_Ret
();
extern
void
CALL32_CBClientEx_Ret
();
extern
void
DPMI_PendingEventCheck
();
extern
void
DPMI_PendingEventCheck_Cleanup
();
extern
void
DPMI_PendingEventCheck_Return
();
extern
void
CALL32_CBClient_Ret
(
void
);
extern
void
CALL32_CBClientEx_Ret
(
void
);
extern
void
DPMI_PendingEventCheck
(
void
);
extern
void
DPMI_PendingEventCheck_Cleanup
(
void
);
extern
void
DPMI_PendingEventCheck_Return
(
void
);
extern
BYTE
__wine_call16_start
[];
extern
BYTE
__wine_call16_end
[];
...
...
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