mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 12:54:13 +00:00
Add IsDestinationReachableW.
This commit is contained in:
parent
b49d92d84e
commit
11d70d73ce
3 changed files with 4 additions and 2 deletions
|
@ -4,7 +4,7 @@ SRCDIR = @srcdir@
|
|||
VPATH = @srcdir@
|
||||
MODULE = unicows.dll
|
||||
IMPORTS = avicap32 msvfw32 oledlg comdlg32 shell32 winmm winspool \
|
||||
rasapi32 secur32 version user32 mpr gdi32 advapi32 kernel32
|
||||
rasapi32 secur32 sensapi version user32 mpr gdi32 advapi32 kernel32
|
||||
|
||||
C_SRCS = \
|
||||
main.c
|
||||
|
|
|
@ -40,6 +40,7 @@
|
|||
#include "shellapi.h"
|
||||
#include "vfw.h"
|
||||
#include "winnetwk.h"
|
||||
#include "sensapi.h"
|
||||
|
||||
/* Create a dummy reference to every function we need so that
|
||||
* the linker will import them.
|
||||
|
@ -314,6 +315,7 @@ const void *dummy_references[] =
|
|||
IsCharLowerW,
|
||||
IsCharUpperW,
|
||||
IsClipboardFormatAvailable,
|
||||
IsDestinationReachableW,
|
||||
IsDialogMessageW,
|
||||
IsTextUnicode,
|
||||
IsValidCodePage,
|
||||
|
|
|
@ -269,7 +269,7 @@
|
|||
@ stdcall IsCharLowerW(long)
|
||||
@ stdcall IsCharUpperW(long)
|
||||
@ stdcall IsClipboardFormatAvailable(long)
|
||||
@ stub IsDestinationReachableW
|
||||
@ stdcall IsDestinationReachableW(wstr ptr)
|
||||
@ stdcall IsDialogMessageW(long ptr)
|
||||
@ stdcall IsTextUnicode(ptr long ptr)
|
||||
@ stdcall IsValidCodePage(long)
|
||||
|
|
Loading…
Reference in a new issue