Import TechBot
[reactos.git] / irc / TechBot / CHMLibrary / CHMDecoding / enumerations.cs
1 using System;
2
3 namespace HtmlHelp.ChmDecoding
4 {
5 /// <summary>
6 /// Enumeration for specifying the extraction mode of an toc or index item.
7 /// </summary>
8 public enum DataMode
9 {
10 /// <summary>
11 /// TextBased - this item comes from a text-based sitemap file
12 /// </summary>
13 TextBased = 0,
14 /// <summary>
15 /// Binary - this item was extracted out of a binary stream
16 /// </summary>
17 Binary = 1
18 }
19 }