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
e562453d
Commit
e562453d
authored
Mar 10, 1999
by
Ulrich Weigand
Committed by
Alexandre Julliard
Mar 10, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added USER.DestroyIcon32 to Callout struct.
parent
1442253d
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
2 deletions
+6
-2
thunk.c
if1632/thunk.c
+1
-0
user.spec
if1632/user.spec
+1
-1
callback.h
include/callback.h
+1
-0
callback.c
misc/callback.c
+3
-1
No files found.
if1632/thunk.c
View file @
e562453d
...
...
@@ -901,6 +901,7 @@ void THUNK_InitCallout(void)
GETADDR
(
RedrawWindow16
,
"RedrawWindow"
,
word_wlww
);
GETADDR
(
InitThreadInput16
,
"InitThreadInput"
,
word_ww
);
GETADDR
(
UserYield16
,
"UserYield"
,
word_
);
GETADDR
(
DestroyIcon32
,
"DestroyIcon32"
,
word_ww
);
#undef GETADDR
}
...
...
if1632/user.spec
View file @
e562453d
...
...
@@ -488,7 +488,7 @@ file user.exe
606 pascal FormatMessage(long ptr word word ptr word ptr) FormatMessage16
608 pascal16 GetForegroundWindow() GetForegroundWindow16
609 pascal16 SetForegroundWindow(word) SetForegroundWindow16
610
stub DestroyIcon32
610
pascal16 DestroyIcon32(word word) CURSORICON_Destroy
620 stub ChangeDisplaySettings
621 stub EnumDisplaySettings
640 stub MsgWaitForMultipleObjects
...
...
include/callback.h
View file @
e562453d
...
...
@@ -123,6 +123,7 @@ typedef struct
HQUEUE16
WINAPI
(
*
InitThreadInput16
)(
WORD
unknown
,
WORD
flags
);
void
WINAPI
(
*
UserYield16
)(
void
);
WORD
WINAPI
(
*
DestroyIcon32
)(
HGLOBAL16
handle
,
UINT16
flags
);
}
CALLOUT_TABLE
;
...
...
misc/callback.c
View file @
e562453d
...
...
@@ -9,6 +9,7 @@
#include "callback.h"
#include "task.h"
#include "syslevel.h"
#include "cursoricon.h"
#include "queue.h"
#include "debug.h"
...
...
@@ -308,6 +309,7 @@ CALLOUT_TABLE Callout =
DispatchMessage16
,
DispatchMessageA
,
DispatchMessageW
,
RedrawWindow16
,
RedrawWindow
,
InitThreadInput16
,
UserYield16
UserYield16
,
CURSORICON_Destroy
};
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