12345678910111213141516171819 |
- //
- // This file manually written from cef/include/internal/cef_types.h.
- // C API name: cef_dom_document_type_t.
- //
- namespace Xilium.CefGlue
- {
- using System;
- /// <summary>
- /// DOM document types.
- /// </summary>
- public enum CefDomDocumentType
- {
- Unknown = 0,
- Html,
- Xhtml,
- Plugin,
- }
- }
|