Added USER.DestroyIcon32 to Callout struct.

This commit is contained in:
Ulrich Weigand 1999-03-10 14:06:53 +00:00 committed by Alexandre Julliard
parent 1442253dfa
commit e562453dae
4 changed files with 6 additions and 2 deletions

View file

@ -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
} }

View file

@ -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

View file

@ -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;

View file

@ -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
}; };