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
5cec819d
Commit
5cec819d
authored
Jun 06, 1999
by
Ulrich Weigand
Committed by
Alexandre Julliard
Jun 06, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed Callback.CallTaskRescheduleProc().
parent
bba76eed
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
34 deletions
+0
-34
thunk.c
if1632/thunk.c
+0
-17
callback.h
include/callback.h
+0
-1
callback.c
misc/callback.c
+0
-16
No files found.
if1632/thunk.c
View file @
5cec819d
...
...
@@ -140,13 +140,8 @@ static THUNK *firstThunk = NULL;
static
LRESULT
WINAPI
THUNK_CallWndProc16
(
WNDPROC16
proc
,
HWND16
hwnd
,
UINT16
msg
,
WPARAM16
wParam
,
LPARAM
lParam
);
static
BOOL
WINAPI
THUNK_CallTaskReschedule
(
void
);
static
BOOL
WINAPI
THUNK_WOWCallback16Ex
(
FARPROC16
,
DWORD
,
DWORD
,
LPVOID
,
LPDWORD
);
/* TASK_Reschedule() 16-bit entry point */
static
FARPROC16
TASK_RescheduleProc
;
static
BOOL
THUNK_ThunkletInit
(
void
);
extern
void
CallFrom16_p_long_wwwll
(
void
);
...
...
@@ -156,7 +151,6 @@ static const CALLBACKS_TABLE CALLBACK_EmulatorTable =
{
(
void
*
)
CallTo16_sreg_
,
/* CallRegisterShortProc */
(
void
*
)
CallTo16_lreg_
,
/* CallRegisterLongProc */
THUNK_CallTaskReschedule
,
/* CallTaskRescheduleProc */
(
void
*
)
CallFrom16_p_long_wwwll
,
/* CallFrom16WndProc */
THUNK_CallWndProc16
,
/* CallWndProc */
(
void
*
)
CallTo16_long_lwwll
,
/* CallDriverProc */
...
...
@@ -192,8 +186,6 @@ BOOL THUNK_Init(void)
{
/* Set the window proc calling functions */
Callbacks
=
&
CALLBACK_EmulatorTable
;
/* Get the 16-bit reschedule function pointer */
TASK_RescheduleProc
=
MODULE_GetWndProcEntry16
(
"TASK_Reschedule"
);
/* Initialize Thunklets */
return
THUNK_ThunkletInit
();
}
...
...
@@ -325,15 +317,6 @@ static LRESULT WINAPI THUNK_CallWndProc16( WNDPROC16 proc, HWND16 hwnd,
/***********************************************************************
* THUNK_CallTaskReschedule
*/
static
BOOL
WINAPI
THUNK_CallTaskReschedule
(
void
)
{
return
CallTo16_word_
(
TASK_RescheduleProc
);
}
/***********************************************************************
* THUNK_EnumObjects16 (GDI.71)
*/
INT16
WINAPI
THUNK_EnumObjects16
(
HDC16
hdc
,
INT16
nObjType
,
...
...
include/callback.h
View file @
5cec819d
...
...
@@ -22,7 +22,6 @@ typedef struct
{
LONG
(
CALLBACK
*
CallRegisterShortProc
)(
CONTEXT
*
,
INT
);
LONG
(
CALLBACK
*
CallRegisterLongProc
)(
CONTEXT
*
,
INT
);
BOOL
(
CALLBACK
*
CallTaskRescheduleProc
)(
void
);
VOID
(
CALLBACK
*
CallFrom16WndProc
)(
void
);
LRESULT
(
CALLBACK
*
CallWndProc
)(
WNDPROC16
,
HWND16
,
UINT16
,
WPARAM16
,
LPARAM
);
...
...
misc/callback.c
View file @
5cec819d
...
...
@@ -262,21 +262,6 @@ static DWORD WINAPI CALLBACK_CallUTProc( FARPROC16 proc, DWORD w1, DWORD w2 )
}
/**********************************************************************
* CALLBACK_CallTaskRescheduleProc
*/
static
BOOL
WINAPI
CALLBACK_CallTaskRescheduleProc
(
void
)
{
BOOL
pending
;
SYSLEVEL_EnterWin16Lock
();
pending
=
TASK_Reschedule
();
SYSLEVEL_LeaveWin16Lock
();
return
pending
;
}
/**********************************************************************
* CALLBACK_WinelibTable
*
* The callbacks function table for Winelib
...
...
@@ -285,7 +270,6 @@ static const CALLBACKS_TABLE CALLBACK_WinelibTable =
{
CALLBACK_CallRegisterProc
,
/* CallRegisterShortProc */
CALLBACK_CallRegisterProc
,
/* CallRegisterLongProc */
CALLBACK_CallTaskRescheduleProc
,
/* CallTaskRescheduleProc */
NULL
,
/* CallFrom16WndProc */
CALLBACK_CallWndProc
,
/* CallWndProc */
CALLBACK_CallDriverProc
,
/* CallDriverProc */
...
...
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