34 lines
707 B
C
34 lines
707 B
C
|
//==============================================================;
|
||
|
//
|
||
|
// This source code is only intended as a supplement to
|
||
|
// existing Microsoft documentation.
|
||
|
//
|
||
|
//
|
||
|
//
|
||
|
//
|
||
|
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
|
||
|
// KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
|
||
|
// IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
|
||
|
// PURPOSE.
|
||
|
//
|
||
|
// Copyright (C) 1999 Microsoft Corporation. All Rights Reserved.
|
||
|
//
|
||
|
//
|
||
|
//
|
||
|
//==============================================================;
|
||
|
|
||
|
#ifndef _EXTEND_H
|
||
|
#define _EXTEND_H
|
||
|
|
||
|
#include <tchar.h>
|
||
|
|
||
|
struct NODESTRUCT
|
||
|
{
|
||
|
GUID GUID;
|
||
|
_TCHAR szDescription[256];
|
||
|
};
|
||
|
|
||
|
#endif // _EXTEND_H
|
||
|
|
||
|
|