mirror of https://github.com/lianthony/NT4.0
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.
33 lines
414 B
33 lines
414 B
/*++
|
|
|
|
Copyright (c) 1996 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
cons.h
|
|
|
|
Abstract:
|
|
|
|
Global constant definitions for the MSAFD NTSD Debugger Extensions.
|
|
|
|
Author:
|
|
|
|
Keith Mnoore (keithmo) 20-May-1996.
|
|
|
|
Environment:
|
|
|
|
User Mode.
|
|
|
|
--*/
|
|
|
|
|
|
#ifndef _CONS_H_
|
|
#define _CONS_H_
|
|
|
|
|
|
#define UC(x) ((UINT)((x) & 0xFF))
|
|
#define NTOHS(x) ( (UC(x) * 256) + UC((x) >> 8) )
|
|
|
|
|
|
#endif // _CONS_H_
|
|
|