Added (empty) stub for OpenVxDHandle.

This commit is contained in:
Eric Pouech 1999-04-03 11:18:06 +00:00 committed by Alexandre Julliard
parent b94ac22f16
commit c53def75cf
2 changed files with 7 additions and 1 deletions

View File

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

View File

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