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.
36 lines
504 B
36 lines
504 B
/*++
|
|
|
|
Copyright (c) 1993 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
cons.h
|
|
|
|
Abstract:
|
|
|
|
Global constant definitions for the AFD.SYS Kernel Debugger
|
|
Extensions.
|
|
|
|
Author:
|
|
|
|
Keith Moore (keithmo) 19-Apr-1995.
|
|
|
|
Environment:
|
|
|
|
User Mode.
|
|
|
|
--*/
|
|
|
|
|
|
#ifndef _CONS_H_
|
|
#define _CONS_H_
|
|
|
|
|
|
#define MAX_TRANSPORT_ADDR 256
|
|
#define Address00 Address[0].Address[0]
|
|
#define UC(x) ((UINT)((x) & 0xFF))
|
|
#define NTOHS(x) ( (UC(x) * 256) + UC((x) >> 8) )
|
|
|
|
|
|
#endif // _CONS_H_
|
|
|