Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Felix Münchhalfen
wine
Commits
e562453d
Commit
e562453d
authored
26 years ago
by
Ulrich Weigand
Committed by
Alexandre Julliard
26 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Added USER.DestroyIcon32 to Callout struct.
parent
1442253d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
if1632/thunk.c
+1
-0
1 addition, 0 deletions
if1632/thunk.c
if1632/user.spec
+1
-1
1 addition, 1 deletion
if1632/user.spec
include/callback.h
+1
-0
1 addition, 0 deletions
include/callback.h
misc/callback.c
+3
-1
3 additions, 1 deletion
misc/callback.c
with
6 additions
and
2 deletions
if1632/thunk.c
+
1
−
0
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
}
...
...
This diff is collapsed.
Click to expand it.
if1632/user.spec
+
1
−
1
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
...
...
This diff is collapsed.
Click to expand it.
include/callback.h
+
1
−
0
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
;
...
...
This diff is collapsed.
Click to expand it.
misc/callback.c
+
3
−
1
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
};
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment