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.
|
|
/*++
Copyright (c) 1992 Microsoft Corporation
Module Name:
local.h
Abstract:
local header to be included by all source files pertaining to the kdext dll
Author:
Ravisankar Pudipeddi
Environment:
User Mode.
Revision History:
--*/
//
// Util functions
//
VOID xdprintf( ULONG Depth, PCCHAR S, ... );
BOOLEAN xReadMemory ( ULONG64 Src, PVOID Dst, ULONG Len );
ULONG64 GetPointerValue (PCHAR String); ULONG64 GetPointerFromAddress (ULONG64 Location); ULONG GetUlongValue (PCHAR String); ULONG GetUlongFromAddress (ULONG64 Location);
ULONG GetFieldValueUlong32 (ULONG64 ul64addrStructureBase, PCHAR pchStructureType, PCHAR pchFieldname); ULONG64 GetFieldValueUlong64 (ULONG64 ul64addrStructureBase, PCHAR pchStructureType, PCHAR pchFieldname);
ULONG FormatDateAndTime (ULONG64 ul64Time, PCHAR pszFormattedDateAndTime, ULONG ulBufferLength); ULONG FormatGUID (GUID guidValue, PCHAR pszFormattedGUID, ULONG ulBufferLength);
|