Added USER.DestroyIcon32 to Callout struct.
This commit is contained in:
parent
1442253dfa
commit
e562453dae
|
@ -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
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue