Commit 77a32d5e authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

krnl386.exe16: Make a couple of functions static.

parent a52b257d
...@@ -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;
......
...@@ -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.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment