mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 12:19:49 +00:00
Added USER.DestroyIcon32 to Callout struct.
This commit is contained in:
parent
1442253dfa
commit
e562453dae
4 changed files with 6 additions and 2 deletions
|
@ -901,6 +901,7 @@ void THUNK_InitCallout(void)
|
||||||
GETADDR( RedrawWindow16, "RedrawWindow", word_wlww );
|
GETADDR( RedrawWindow16, "RedrawWindow", word_wlww );
|
||||||
GETADDR( InitThreadInput16, "InitThreadInput", word_ww );
|
GETADDR( InitThreadInput16, "InitThreadInput", word_ww );
|
||||||
GETADDR( UserYield16, "UserYield", word_ );
|
GETADDR( UserYield16, "UserYield", word_ );
|
||||||
|
GETADDR( DestroyIcon32, "DestroyIcon32", word_ww );
|
||||||
|
|
||||||
#undef GETADDR
|
#undef GETADDR
|
||||||
}
|
}
|
||||||
|
|
|
@ -488,7 +488,7 @@ file user.exe
|
||||||
606 pascal FormatMessage(long ptr word word ptr word ptr) FormatMessage16
|
606 pascal FormatMessage(long ptr word word ptr word ptr) FormatMessage16
|
||||||
608 pascal16 GetForegroundWindow() GetForegroundWindow16
|
608 pascal16 GetForegroundWindow() GetForegroundWindow16
|
||||||
609 pascal16 SetForegroundWindow(word) SetForegroundWindow16
|
609 pascal16 SetForegroundWindow(word) SetForegroundWindow16
|
||||||
610 stub DestroyIcon32
|
610 pascal16 DestroyIcon32(word word) CURSORICON_Destroy
|
||||||
620 stub ChangeDisplaySettings
|
620 stub ChangeDisplaySettings
|
||||||
621 stub EnumDisplaySettings
|
621 stub EnumDisplaySettings
|
||||||
640 stub MsgWaitForMultipleObjects
|
640 stub MsgWaitForMultipleObjects
|
||||||
|
|
|
@ -123,6 +123,7 @@ typedef struct
|
||||||
|
|
||||||
HQUEUE16 WINAPI (*InitThreadInput16)( WORD unknown, WORD flags );
|
HQUEUE16 WINAPI (*InitThreadInput16)( WORD unknown, WORD flags );
|
||||||
void WINAPI (*UserYield16)( void );
|
void WINAPI (*UserYield16)( void );
|
||||||
|
WORD WINAPI (*DestroyIcon32)( HGLOBAL16 handle, UINT16 flags );
|
||||||
|
|
||||||
} CALLOUT_TABLE;
|
} CALLOUT_TABLE;
|
||||||
|
|
||||||
|
|
|
@ -9,6 +9,7 @@
|
||||||
#include "callback.h"
|
#include "callback.h"
|
||||||
#include "task.h"
|
#include "task.h"
|
||||||
#include "syslevel.h"
|
#include "syslevel.h"
|
||||||
|
#include "cursoricon.h"
|
||||||
#include "queue.h"
|
#include "queue.h"
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
|
|
||||||
|
@ -308,6 +309,7 @@ CALLOUT_TABLE Callout =
|
||||||
DispatchMessage16, DispatchMessageA, DispatchMessageW,
|
DispatchMessage16, DispatchMessageA, DispatchMessageW,
|
||||||
RedrawWindow16, RedrawWindow,
|
RedrawWindow16, RedrawWindow,
|
||||||
InitThreadInput16,
|
InitThreadInput16,
|
||||||
UserYield16
|
UserYield16,
|
||||||
|
CURSORICON_Destroy
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue