42 lines
987 B
C
42 lines
987 B
C
//==============================================================;
|
|
|
|
//
|
|
|
|
// This source code is only intended as a supplement to existing Microsoft documentation.
|
|
|
|
//
|
|
|
|
// Use of this code is NOT supported.
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// 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-2001 Microsoft Corporation, All Rights Reserved
|
|
//
|
|
// Microsoft Premier Support for Developers
|
|
//
|
|
//==============================================================;
|
|
|
|
#ifndef __LocalResource_H__
|
|
#define __LocalResource_H__
|
|
|
|
#define INDEX_NONE -1
|
|
#define INDEX_SPACEICON 0
|
|
#define INDEX_LANDICON 1
|
|
#define INDEX_SKYICON 2
|
|
#define INDEX_PEOPLEICON 3
|
|
#define INDEX_CLOSEDFOLDER 4
|
|
#define INDEX_OPENFOLDER 5
|
|
|
|
#endif // __LocalResource_H__
|