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.
51 lines
1.4 KiB
51 lines
1.4 KiB
/*****************************************************************************/
|
|
/** Microsoft LAN Manager **/
|
|
/** Copyright(c) Microsoft Corp., 1987-1990 **/
|
|
/*****************************************************************************/
|
|
/*****************************************************************************
|
|
File : node0.cxx
|
|
Title : routines for node_0
|
|
History :
|
|
04-Aug-1991 VibhasC Created
|
|
|
|
*****************************************************************************/
|
|
/****************************************************************************
|
|
local defines and includes
|
|
****************************************************************************/
|
|
#include "nulldefs.h"
|
|
extern "C"
|
|
{
|
|
#include <stdio.h>
|
|
}
|
|
#include "common.hxx"
|
|
#include "errors.hxx"
|
|
#include "midlnode.hxx"
|
|
#include "nodeskl.hxx"
|
|
#include "ctxt.hxx"
|
|
|
|
|
|
/****************************************************************************
|
|
extern data
|
|
****************************************************************************/
|
|
|
|
extern CTXTMGR * pGlobalContext;
|
|
|
|
/****************************************************************************/
|
|
|
|
|
|
/****************************************************************************
|
|
node_0:
|
|
the constructor
|
|
****************************************************************************/
|
|
node_0::node_0()
|
|
{
|
|
|
|
#ifdef MIDL_INTERNAL
|
|
NDMask = (unsigned short) 0;
|
|
#endif // MIDL_INTERNAL
|
|
pChild =
|
|
pSibling = (node_skl *)0;
|
|
}
|
|
|
|
|
|
|