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.
|
|
/////////////////////////////////////////////////////////////////////////////
//
//
// Copyright (c) 1996, 1997 Microsoft Corporation
//
//
// Module Name:
// test.c
//
// Abstract:
//
// This file is a test to find out if dual binding to NDIS and KS works
//
// Author:
//
// P Porzuczek
//
// Environment:
//
// Revision History:
//
//
//////////////////////////////////////////////////////////////////////////////
#ifndef _MEM_H_
#define _MEM_H_
VOID FreeMemory ( PVOID pvToFree, ULONG ulSize );
NTSTATUS AllocateMemory ( PVOID *ppvAllocated, ULONG ulcbSize );
ULONG MyStrLen ( PUCHAR p );
VOID MyStrCat ( PUCHAR pTarget, PUCHAR pSource );
PUCHAR MyUlToA ( ULONG dwValue, PUCHAR pszStr, ULONG dwRadix );
#endif // _MEM_H_
|