init lserp cs 5.0

This commit is contained in:
cyf
2026-07-10 15:25:05 +08:00
commit 90f3fda86a
3799 changed files with 976868 additions and 0 deletions
@@ -0,0 +1,42 @@
//
// This file manually written from cef/include/internal/cef_types.h.
// C API name: cef_json_writer_options_t.
//
namespace Cef3
{
using System;
/// <summary>
/// Options that can be passed to CefWriteJSON.
/// </summary>
[Flags]
public enum CefJsonWriterOptions
{
/// <summary>
/// Default behavior.
/// </summary>
Default = 0,
/// <summary>
/// This option instructs the writer that if a Binary value is encountered,
/// the value (and key if within a dictionary) will be omitted from the
/// output, and success will be returned. Otherwise, if a binary value is
/// encountered, failure will be returned.
/// </summary>
OmitBinaryValues = 1 << 0,
/// <summary>
/// This option instructs the writer to write doubles that have no fractional
/// part as a normal integer (i.e., without using exponential notation
/// or appending a '.0') as long as the value is within the range of a
/// 64-bit int.
/// </summary>
OmitDoubleTypePreservation = 1 << 1,
/// <summary>
/// Return a slightly nicer formatted json string (pads with whitespace to
/// help with readability).
/// </summary>
PrettyPrint = 1 << 2,
}
}