krnl386.exe16: Make a couple of functions static.
Signed-off-by: Francois Gouget <fgouget@free.fr> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
a52b257d56
commit
77a32d5e4a
|
@ -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 )
|
||||||
* 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 )
|
||||||
*
|
*
|
||||||
* 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.
|
||||||
|
|
Loading…
Reference in New Issue