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
77a32d5e
Commit
77a32d5e
authored
Feb 22, 2018
by
Francois Gouget
Committed by
Alexandre Julliard
Feb 22, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
krnl386.exe16: Make a couple of functions static.
Signed-off-by:
Francois Gouget
<
fgouget@free.fr
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
a52b257d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
dosexe.h
dlls/krnl386.exe16/dosexe.h
+0
-1
interrupts.c
dlls/krnl386.exe16/interrupts.c
+2
-2
No files found.
dlls/krnl386.exe16/dosexe.h
View file @
77a32d5e
...
@@ -272,7 +272,6 @@ extern void EMS_Ioctl_Handler(CONTEXT*) DECLSPEC_HIDDEN;
...
@@ -272,7 +272,6 @@ extern void EMS_Ioctl_Handler(CONTEXT*) DECLSPEC_HIDDEN;
/* interrupts.c */
/* interrupts.c */
extern
void
__wine_call_int_handler
(
CONTEXT
*
,
BYTE
)
DECLSPEC_HIDDEN
;
extern
void
__wine_call_int_handler
(
CONTEXT
*
,
BYTE
)
DECLSPEC_HIDDEN
;
extern
void
DOSVM_CallBuiltinHandler
(
CONTEXT
*
,
BYTE
)
DECLSPEC_HIDDEN
;
extern
BOOL
DOSVM_EmulateInterruptPM
(
CONTEXT
*
,
BYTE
)
DECLSPEC_HIDDEN
;
extern
BOOL
DOSVM_EmulateInterruptPM
(
CONTEXT
*
,
BYTE
)
DECLSPEC_HIDDEN
;
extern
FARPROC16
DOSVM_GetPMHandler16
(
BYTE
)
DECLSPEC_HIDDEN
;
extern
FARPROC16
DOSVM_GetPMHandler16
(
BYTE
)
DECLSPEC_HIDDEN
;
extern
void
DOSVM_SetPMHandler16
(
BYTE
,
FARPROC16
)
DECLSPEC_HIDDEN
;
extern
void
DOSVM_SetPMHandler16
(
BYTE
,
FARPROC16
)
DECLSPEC_HIDDEN
;
...
...
dlls/krnl386.exe16/interrupts.c
View file @
77a32d5e
...
@@ -185,7 +185,7 @@ static void DOSVM_PushFlags( CONTEXT *context, BOOL islong, BOOL isstub )
...
@@ -185,7 +185,7 @@ static void DOSVM_PushFlags( CONTEXT *context, BOOL islong, BOOL isstub )
* Pushes interrupt frame to stack and changes instruction
* Pushes interrupt frame to stack and changes instruction
* pointer to interrupt handler.
* pointer to interrupt handler.
*/
*/
void
DOSVM_HardwareInterruptPM
(
CONTEXT
*
context
,
BYTE
intnum
)
static
void
DOSVM_HardwareInterruptPM
(
CONTEXT
*
context
,
BYTE
intnum
)
{
{
FARPROC16
addr
=
DOSVM_GetPMHandler16
(
intnum
);
FARPROC16
addr
=
DOSVM_GetPMHandler16
(
intnum
);
...
@@ -386,7 +386,7 @@ void DOSVM_SetPMHandler16( BYTE intnum, FARPROC16 handler )
...
@@ -386,7 +386,7 @@ void DOSVM_SetPMHandler16( BYTE intnum, FARPROC16 handler )
*
*
* Execute Wine interrupt handler procedure.
* Execute Wine interrupt handler procedure.
*/
*/
void
DOSVM_CallBuiltinHandler
(
CONTEXT
*
context
,
BYTE
intnum
)
static
void
DOSVM_CallBuiltinHandler
(
CONTEXT
*
context
,
BYTE
intnum
)
{
{
/*
/*
* FIXME: Make all builtin interrupt calls go via this routine.
* FIXME: Make all builtin interrupt calls go via this routine.
...
...
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