mirror of
https://github.com/reactos/reactos.git
synced 2025-06-27 22:49:43 +00:00
Import TechBot
svn path=/trunk/; revision=13064
This commit is contained in:
parent
568b27baeb
commit
9dab4509fa
94 changed files with 24386 additions and 0 deletions
19
irc/TechBot/CHMLibrary/CHMDecoding/enumerations.cs
Normal file
19
irc/TechBot/CHMLibrary/CHMDecoding/enumerations.cs
Normal file
|
@ -0,0 +1,19 @@
|
|||
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
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue