Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
981 B

  1. /*++
  2. Copyright (c) 1998 Microsoft Corporation
  3. Module Name:
  4. Abstract:
  5. Stubs for Win98 api's. Actual implementation is unimportant
  6. since the functions are only used to generate the implib.
  7. Author:
  8. Bryan Tuttle (bryant) 5-Aug-1998
  9. Revision History:
  10. --*/
  11. #include "basedll.h"
  12. #pragma hdrstop
  13. DWORD
  14. GetHandleContext(HANDLE handle)
  15. {
  16. KdPrintEx((DPFLTR_SYSTEM_ID, DPFLTR_ERROR_LEVEL, "Unsupported API - kernel32!GetHandleContext() called\n"));
  17. SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
  18. return FALSE;
  19. }
  20. BOOL
  21. SetHandleContext(HANDLE handle, DWORD context)
  22. {
  23. KdPrintEx((DPFLTR_SYSTEM_ID, DPFLTR_ERROR_LEVEL, "Unsupported API - kernel32!SetHandleContext() called\n"));
  24. SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
  25. return FALSE;
  26. }
  27. HANDLE
  28. CreateSocketHandle(void)
  29. {
  30. KdPrintEx((DPFLTR_SYSTEM_ID, DPFLTR_ERROR_LEVEL, "Unsupported API - kernel32!CreateSocketHandle() called\n"));
  31. SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
  32. return NULL;
  33. }