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
02e17775
Commit
02e17775
authored
Nov 18, 2002
by
Jukka Heinonen
Committed by
Alexandre Julliard
Nov 18, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed obsolete INT_Int31Handler.
parent
bb0fd596
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
5 additions
and
14 deletions
+5
-14
kernel32.spec
dlls/kernel/kernel32.spec
+0
-1
wprocs.spec
dlls/kernel/wprocs.spec
+0
-1
dosaspi.c
dlls/winedos/dosaspi.c
+1
-0
dosexe.h
dlls/winedos/dosexe.h
+4
-0
callback.h
include/callback.h
+0
-7
miscemu.h
include/miscemu.h
+0
-5
dpmi.c
msdos/dpmi.c
+0
-0
No files found.
dlls/kernel/kernel32.spec
View file @
02e17775
...
...
@@ -1055,7 +1055,6 @@
@ stdcall INT_Int25Handler(ptr) INT_Int25Handler
@ stdcall INT_Int26Handler(ptr) INT_Int26Handler
@ stdcall INT_Int2fHandler(ptr) INT_Int2fHandler
@ stdcall INT_Int31Handler(ptr) INT_Int31Handler
@ stdcall NetBIOSCall16(ptr) NetBIOSCall16
@ cdecl INT_SetPMHandler(long long) INT_SetPMHandler
@ cdecl LOCAL_Alloc(long long long) LOCAL_Alloc
...
...
dlls/kernel/wprocs.spec
View file @
02e17775
...
...
@@ -8,7 +8,6 @@
137 pascal -register INT_Int25Handler() INT_Int25Handler
138 pascal -register INT_Int26Handler() INT_Int26Handler
147 pascal -interrupt INT_Int2fHandler() INT_Int2fHandler
149 pascal -interrupt INT_Int31Handler() INT_Int31Handler
192 pascal -interrupt INT_Int5cHandler() NetBIOSCall16
# default handler for unimplemented interrupts
356 pascal -interrupt INT_DefaultHandler() INT_DefaultHandler
...
...
dlls/winedos/dosaspi.c
View file @
02e17775
...
...
@@ -24,6 +24,7 @@
#include "wine/winaspi.h"
#include "wine/debug.h"
#include "miscemu.h"
/* DOSMEM_* */
#include "dosexe.h"
#include "winerror.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
aspi
);
...
...
dlls/winedos/dosexe.h
View file @
02e17775
...
...
@@ -138,8 +138,12 @@ extern void WINAPI DOSVM_Int29Handler(CONTEXT86*);
extern
void
WINAPI
DOSVM_Int2aHandler
(
CONTEXT86
*
);
/* int31.c */
typedef
void
(
WINAPI
*
RMCBPROC
)(
CONTEXT86
*
);
extern
void
WINAPI
DOSVM_Int31Handler
(
CONTEXT86
*
);
extern
BOOL
DOSVM_IsDos32
(
void
);
extern
FARPROC16
WINAPI
DPMI_AllocInternalRMCB
(
RMCBPROC
);
extern
void
WINAPI
DPMI_FreeInternalRMCB
(
FARPROC16
);
extern
int
DPMI_CallRMProc
(
CONTEXT86
*
,
LPWORD
,
int
,
int
);
/* int33.c */
extern
void
WINAPI
DOSVM_Int33Handler
(
CONTEXT86
*
);
...
...
include/callback.h
View file @
02e17775
...
...
@@ -29,13 +29,6 @@ typedef struct {
void
(
WINAPI
*
EmulateInterruptPM
)(
CONTEXT86
*
context
,
BYTE
intnum
);
void
(
WINAPI
*
CallBuiltinHandler
)(
CONTEXT86
*
context
,
BYTE
intnum
);
/* DPMI functions */
void
(
WINAPI
*
CallRMInt
)(
CONTEXT86
*
context
);
void
(
WINAPI
*
CallRMProc
)(
CONTEXT86
*
context
,
int
iret
);
void
(
WINAPI
*
AllocRMCB
)(
CONTEXT86
*
context
);
void
(
WINAPI
*
FreeRMCB
)(
CONTEXT86
*
context
);
void
(
WINAPI
*
RawModeSwitch
)(
CONTEXT86
*
context
);
/* I/O functions */
void
(
WINAPI
*
SetTimer
)(
unsigned
ticks
);
unsigned
(
WINAPI
*
GetTimer
)(
void
);
...
...
include/miscemu.h
View file @
02e17775
...
...
@@ -263,12 +263,7 @@ extern void WINAPI INT_Int3dHandler(CONTEXT86*);
extern
void
WINAPI
INT_Int3eHandler
(
CONTEXT86
*
);
/* msdos/dpmi.c */
typedef
void
(
WINAPI
*
RMCBPROC
)(
CONTEXT86
*
);
extern
void
WINAPI
INT_Int31Handler
(
CONTEXT86
*
);
extern
BOOL
DPMI_LoadDosSystem
(
void
);
extern
FARPROC16
WINAPI
DPMI_AllocInternalRMCB
(
RMCBPROC
);
extern
void
WINAPI
DPMI_FreeInternalRMCB
(
FARPROC16
);
extern
int
DPMI_CallRMProc
(
CONTEXT86
*
,
LPWORD
,
int
,
int
);
/* misc/ppdev.c */
...
...
msdos/dpmi.c
View file @
02e17775
This diff is collapsed.
Click to expand it.
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