windows-nt/Source/XPSP1/NT/base/win32/client/w98stubs.c

47 lines
981 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
/*++
Copyright (c) 1998 Microsoft Corporation
Module Name:
Abstract:
Stubs for Win98 api's. Actual implementation is unimportant
since the functions are only used to generate the implib.
Author:
Bryan Tuttle (bryant) 5-Aug-1998
Revision History:
--*/
#include "basedll.h"
#pragma hdrstop
DWORD
GetHandleContext(HANDLE handle)
{
KdPrintEx((DPFLTR_SYSTEM_ID, DPFLTR_ERROR_LEVEL, "Unsupported API - kernel32!GetHandleContext() called\n"));
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
BOOL
SetHandleContext(HANDLE handle, DWORD context)
{
KdPrintEx((DPFLTR_SYSTEM_ID, DPFLTR_ERROR_LEVEL, "Unsupported API - kernel32!SetHandleContext() called\n"));
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
HANDLE
CreateSocketHandle(void)
{
KdPrintEx((DPFLTR_SYSTEM_ID, DPFLTR_ERROR_LEVEL, "Unsupported API - kernel32!CreateSocketHandle() called\n"));
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return NULL;
}