From c53def75cfd029cb9e296f8592eefcd60a7d1d1d Mon Sep 17 00:00:00 2001 From: Eric Pouech Date: Sat, 3 Apr 1999 11:18:06 +0000 Subject: [PATCH] Added (empty) stub for OpenVxDHandle. --- relay32/kernel32.spec | 2 +- win32/device.c | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/relay32/kernel32.spec b/relay32/kernel32.spec index 719ac7e16eb..4ed44fbd674 100644 --- a/relay32/kernel32.spec +++ b/relay32/kernel32.spec @@ -562,7 +562,7 @@ init MAIN_KernelInit 544 stub OpenProfileUserMapping 545 stdcall OpenSemaphoreA(long long str) OpenSemaphoreA 546 stdcall OpenSemaphoreW(long long wstr) OpenSemaphoreW -547 stub OpenVxDHandle +547 stdcall OpenVxDHandle(long) OpenVxDHandle 548 stdcall OutputDebugStringA(str) OutputDebugStringA 549 stdcall OutputDebugStringW(wstr) OutputDebugStringW 550 stdcall PeekConsoleInputA(ptr ptr long ptr) PeekConsoleInputA diff --git a/win32/device.c b/win32/device.c index 780177d73e3..9abb5df983b 100644 --- a/win32/device.c +++ b/win32/device.c @@ -932,3 +932,9 @@ static BOOL DeviceIo_MONODEBG(DWORD dwIoControlCode, } return TRUE; } + +DWORD WINAPI OpenVxDHandle(DWORD pmt) +{ + FIXME(win32, "(0x%08lx) stub!\n", pmt); + return 0; +}