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.

86 lines
1.1 KiB

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. external.h
  5. Abstract:
  6. This contains the protypes for the functions which
  7. are outside of the current library
  8. Author:
  9. Stephane Plante
  10. Environment:
  11. Kernel mode only.
  12. Revision History:
  13. --*/
  14. #ifndef _EXTERNAL_H_
  15. #define _EXTERNAL_H_
  16. extern
  17. PVOID
  18. MEMORY_ALLOCATE(
  19. ULONG Num
  20. );
  21. extern
  22. VOID
  23. MEMORY_COPY(
  24. PVOID Dest,
  25. PVOID Src,
  26. ULONG Length
  27. );
  28. extern
  29. VOID
  30. MEMORY_FREE(
  31. PVOID Dest
  32. );
  33. extern
  34. VOID
  35. MEMORY_SET(
  36. PVOID Src,
  37. UCHAR Value,
  38. ULONG Length
  39. );
  40. extern
  41. VOID
  42. MEMORY_ZERO(
  43. PVOID Src,
  44. ULONG Length
  45. );
  46. extern
  47. VOID
  48. PRINTF(
  49. PUCHAR String,
  50. ...
  51. );
  52. extern
  53. ULONG
  54. STRING_LENGTH(
  55. PUCHAR String
  56. );
  57. extern
  58. VOID
  59. STRING_PRINT(
  60. PUCHAR Buffer,
  61. PUCHAR String,
  62. ...
  63. );
  64. #endif