Export a few 16-bit functions needed by higher-level dlls.
This commit is contained in:
parent
42a7320388
commit
80338d4afd
|
@ -412,3 +412,9 @@ debug_channels (bitblt bitmap clipping dc ddraw driver enhmetafile font gdi
|
|||
@ extern pfnRealizePalette pfnRealizePalette
|
||||
@ extern pfnSelectPalette pfnSelectPalette
|
||||
@ stub pstackConnect
|
||||
|
||||
################################################################
|
||||
# Wine extensions: Win16 functions that are needed by other dlls
|
||||
#
|
||||
@ stdcall CreateMetaFile16(str) CreateMetaFile16
|
||||
@ stdcall CloseMetaFile16(long) CloseMetaFile16
|
||||
|
|
|
@ -938,8 +938,19 @@ debug_channels (comm debugstr dll int resource stress thunk toolhelp win32)
|
|||
@ stdcall SetCriticalSectionSpinCount(ptr long) SetCriticalSectionSpinCount
|
||||
@ stdcall ProcessIdToSessionId(long ptr) ProcessIdToSessionId
|
||||
|
||||
##################
|
||||
# Wine extensions
|
||||
################################################################
|
||||
# Wine extensions: Win16 functions that are needed by other dlls
|
||||
#
|
||||
@ stdcall ConvertDialog32To16(ptr long ptr) ConvertDialog32To16
|
||||
@ stdcall FindResource16(long str str) FindResource16
|
||||
@ stdcall FreeResource16(long) FreeResource16
|
||||
@ stdcall GetCurrentTask() GetCurrentTask
|
||||
@ stdcall GetModuleHandle16(str) GetModuleHandle16
|
||||
@ stdcall LoadResource16(long long) LoadResource16
|
||||
@ stdcall LockResource16(long) LockResource16
|
||||
|
||||
################################################################
|
||||
# Wine internal extensions
|
||||
#
|
||||
# All functions must be prefixed with '__wine_' (for internal functions)
|
||||
# or 'wine_' (for user-visible functions) to avoid namespace conflicts.
|
||||
|
|
|
@ -653,8 +653,16 @@ debug_channels (accel caret class clipboard combo cursor dc ddeml dialog driver
|
|||
@ stdcall AllowSetForegroundWindow (long) AllowSetForegroundWindow
|
||||
@ stdcall LockSetForegroundWindow (long) LockSetForegroundWindow
|
||||
|
||||
###################################################
|
||||
# Extra useful functions not exported under Windows
|
||||
################################################################
|
||||
# Wine extensions: Win16 functions that are needed by other dlls
|
||||
#
|
||||
@ stdcall CallWindowProc16(long long long long long) CallWindowProc16
|
||||
@ stdcall CreateDialogIndirectParam16(long ptr long long long) CreateDialogIndirectParam16
|
||||
@ stdcall DialogBoxIndirectParam16(long long long long long) DialogBoxIndirectParam16
|
||||
|
||||
################################################################
|
||||
# Wine extensions: extra useful functions not exported under Windows
|
||||
#
|
||||
@ stdcall GetSysColorPen(long) GetSysColorPen
|
||||
@ stdcall wvsnprintfA(ptr long str ptr) wvsnprintfA
|
||||
@ stdcall wvsnprintfW(ptr long wstr ptr) wvsnprintfW
|
||||
|
|
Loading…
Reference in New Issue