Commit e562453d authored by Ulrich Weigand's avatar Ulrich Weigand Committed by Alexandre Julliard

Added USER.DestroyIcon32 to Callout struct.

parent 1442253d
......@@ -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
}
......
......@@ -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
......
......@@ -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;
......
......@@ -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
};
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment