Commit 52202224 authored by Paul Gofman's avatar Paul Gofman Committed by Alexandre Julliard

ntdll: Comment out stubs for Nt and Zw functions.

parent 4c10543b
...@@ -155,7 +155,7 @@ static BOOL init_function_ptrs(void) ...@@ -155,7 +155,7 @@ static BOOL init_function_ptrs(void)
!pNtRequestPort || !pNtRegisterThreadTerminatePort || !pNtRequestPort || !pNtRegisterThreadTerminatePort ||
!pNtConnectPort || !pRtlInitUnicodeString) !pNtConnectPort || !pRtlInitUnicodeString)
{ {
win_skip("Needed port functions are not available\n"); skip("Needed port functions are not available\n");
FreeLibrary(hntdll); FreeLibrary(hntdll);
return FALSE; return FALSE;
} }
...@@ -384,7 +384,7 @@ START_TEST(port) ...@@ -384,7 +384,7 @@ START_TEST(port)
status = pNtCreatePort(&port_handle, &obj, 100, 100, 0); status = pNtCreatePort(&port_handle, &obj, 100, 100, 0);
if (status == STATUS_ACCESS_DENIED) skip("Not enough rights\n"); if (status == STATUS_ACCESS_DENIED) skip("Not enough rights\n");
else todo_wine ok(status == STATUS_SUCCESS, "Expected STATUS_SUCCESS, got %d\n", status); else ok(status == STATUS_SUCCESS, "Expected STATUS_SUCCESS, got %d\n", status);
if (status == STATUS_SUCCESS) if (status == STATUS_SUCCESS)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment