mirror of https://github.com/tongzx/nt5src
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.
49 lines
532 B
49 lines
532 B
/*++
|
|
|
|
Copyright (C) 1996-2001 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
NODE.CPP
|
|
|
|
Abstract:
|
|
|
|
History:
|
|
|
|
--*/
|
|
|
|
#include "precomp.h"
|
|
#include "node.h"
|
|
#include "eventreg.h"
|
|
#include <impdyn.h>
|
|
#include "regevent.h"
|
|
|
|
|
|
CValue::CValue(TCHAR * pName, DWORD dwType, DWORD dwDataSize, BYTE * pData)
|
|
{
|
|
|
|
}
|
|
CValue::~CValue()
|
|
{
|
|
|
|
}
|
|
|
|
CNode::CNode()
|
|
{
|
|
}
|
|
CNode::~CNode()
|
|
{
|
|
|
|
}
|
|
DWORD CNode::AddSubNode(CNode * pAdd)
|
|
{
|
|
return 0;
|
|
}
|
|
DWORD CNode::AddValue(CValue *)
|
|
{
|
|
return 0;
|
|
}
|
|
DWORD CNode::CompareAndReportDiffs(CNode * pComp)
|
|
{
|
|
return 0;
|
|
}
|