Source code of Windows XP (NT5)
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

  1. /*++
  2. Copyright (C) 1996-2001 Microsoft Corporation
  3. Module Name:
  4. NODE.CPP
  5. Abstract:
  6. History:
  7. --*/
  8. #include "precomp.h"
  9. #include "node.h"
  10. #include "eventreg.h"
  11. #include <impdyn.h>
  12. #include "regevent.h"
  13. CValue::CValue(TCHAR * pName, DWORD dwType, DWORD dwDataSize, BYTE * pData)
  14. {
  15. }
  16. CValue::~CValue()
  17. {
  18. }
  19. CNode::CNode()
  20. {
  21. }
  22. CNode::~CNode()
  23. {
  24. }
  25. DWORD CNode::AddSubNode(CNode * pAdd)
  26. {
  27. return 0;
  28. }
  29. DWORD CNode::AddValue(CValue *)
  30. {
  31. return 0;
  32. }
  33. DWORD CNode::CompareAndReportDiffs(CNode * pComp)
  34. {
  35. return 0;
  36. }