Leaked source code of windows server 2003
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.

58 lines
947 B

  1. /*++ BUILD Version: 0001 // Increment this if a change has global effects
  2. Copyright (c) Microsoft Corporation. All rights reserved.
  3. Module Name:
  4. fondrv.h
  5. Abstract:
  6. stuff common to ntgdi\fondrv\...
  7. Author:
  8. Jay Krell (JayKrell) January 2002
  9. Environment:
  10. statically linked into win32k.sys
  11. kernel mode
  12. Revision History:
  13. --*/
  14. #if !defined(WINDOWS_NTGDI_FONDRV_FONDRV_H_INCLUDED)
  15. #define WINDOWS_NTGDI_FONDRV_FONDRV_H_INCLUDED
  16. #if (_MSC_VER > 1020)
  17. #pragma once
  18. #endif
  19. BOOL
  20. bMappedViewStrlen(
  21. PVOID pvViewBase,
  22. SIZE_T cjViewSize,
  23. PVOID pvString,
  24. OUT PSIZE_T pcjOutLength OPTIONAL
  25. );
  26. BOOL
  27. bMappedViewRangeCheck(
  28. PVOID ViewBase,
  29. SIZE_T ViewSize,
  30. PVOID DataAddress,
  31. SIZE_T DataSize
  32. );
  33. #if DBG
  34. VOID
  35. __cdecl
  36. NotifyBadFont(
  37. PCSTR Format,
  38. ...
  39. );
  40. #endif
  41. #endif /* WINDOWS_NTGDI_FONDRV_FONDRV_H_INCLUDED */