mirror of
https://github.com/reactos/reactos.git
synced 2024-10-30 19:41:57 +00:00
20 lines
428 B
C#
20 lines
428 B
C#
|
using System;
|
||
|
|
||
|
namespace HtmlHelp.ChmDecoding
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Enumeration for specifying the extraction mode of an toc or index item.
|
||
|
/// </summary>
|
||
|
public enum DataMode
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// TextBased - this item comes from a text-based sitemap file
|
||
|
/// </summary>
|
||
|
TextBased = 0,
|
||
|
/// <summary>
|
||
|
/// Binary - this item was extracted out of a binary stream
|
||
|
/// </summary>
|
||
|
Binary = 1
|
||
|
}
|
||
|
}
|