Leaked source code of windows server 2003
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.
|
|
//-----------------------------------------------------------------------------
//
// File: espenum.h
// Copyright (C) 1994-1997 Microsoft Corporation
// All rights reserved.
//
//
//
//-----------------------------------------------------------------------------
#ifndef ESPENUM_H
#define ESPENUM_H
extern const LTAPIENTRY CString ftDescUnknown; //Description for unknown file types
class LTAPIENTRY CIconType { public: // Special note: these enum value sequence is of vital importance to
// the GUI components. Please preserve them.
enum IconType { None = 0, Project, // project root icon
Directory, // Part of project structure
File, // File object in the project
Expandable, // Generic Expandable node in a file.
// Special note: Any value up to Expandable is
// currently display as a folder in prj window
Bitmap, // Bitmap
Dialog, // Dialog like items
Icon, // Icon resource
Version, // Version stamping resources
String, // String resources
Accel, // Accelerator
Cursor, // Cursor resource
Menu, // Menu resources
Custom, // Custom resources
Reference // icon for reference glossary
};
NOTHROW static const TCHAR * GetIconName(CIconType::IconType); NOTHROW static HBITMAP GetIconBitmap(CIconType::IconType); static void Enumerate(CEnumCallback &); private: static const TCHAR *const m_szIconNames[]; CIconType(); };
typedef CIconType CIT;
class LTAPIENTRY CLocStatus { public: enum LocStatus { InvalidLocStatus = 0, NotLocalized, Updated, Obsolete_AutoTranslated, // Don't use this! Obsolete!
Localized = 4, NotApplicable, InvalidLocStatus2 // used by edbval to determine a invalid status
// a new "valid" status must be entered before this.
};
NOTHROW static const TCHAR * GetStatusText(CLocStatus::LocStatus); NOTHROW static const TCHAR * GetStatusShortText(CLocStatus::LocStatus); NOTHROW static CLocStatus::LocStatus MapShortTextToEnum(const TCHAR *); NOTHROW static CLocStatus::LocStatus MapCharToEnum(const TCHAR); NOTHROW static CLocStatus::LocStatus MapLongTextToEnum(const TCHAR *szLongName); static void Enumerate(CEnumCallback &); private: struct StatusInfo { const TCHAR *szStatusShortText; const TCHAR *szStatusText; };
static const StatusInfo m_Info[];
CLocStatus(); };
typedef CLocStatus CLS;
#endif // ESPENUM_H
|