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.

61 lines
822 B

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. //
  4. // Copyright (c) 1996, 1997 Microsoft Corporation
  5. //
  6. //
  7. // Module Name:
  8. // test.c
  9. //
  10. // Abstract:
  11. //
  12. // This file is a test to find out if dual binding to NDIS and KS works
  13. //
  14. // Author:
  15. //
  16. // P Porzuczek
  17. //
  18. // Environment:
  19. //
  20. // Revision History:
  21. //
  22. //
  23. //////////////////////////////////////////////////////////////////////////////
  24. #ifndef _MEM_H_
  25. #define _MEM_H_
  26. VOID
  27. FreeMemory (
  28. PVOID pvToFree,
  29. ULONG ulSize
  30. );
  31. NTSTATUS
  32. AllocateMemory (
  33. PVOID *ppvAllocated,
  34. ULONG ulcbSize
  35. );
  36. ULONG
  37. MyStrLen (
  38. PUCHAR p
  39. );
  40. VOID
  41. MyStrCat (
  42. PUCHAR pTarget,
  43. PUCHAR pSource
  44. );
  45. PUCHAR
  46. MyUlToA (
  47. ULONG dwValue,
  48. PUCHAR pszStr,
  49. ULONG dwRadix
  50. );
  51. #endif // _MEM_H_