init lserp cs 5.0
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
//
|
||||
// This file manually written from cef/include/internal/cef_types.h.
|
||||
// C API name: cef_v8_propertyattribute_t.
|
||||
//
|
||||
namespace Cef3
|
||||
{
|
||||
using System;
|
||||
|
||||
/// <summary>
|
||||
/// V8 property attribute values.
|
||||
/// </summary>
|
||||
[Flags]
|
||||
public enum CefV8PropertyAttribute
|
||||
{
|
||||
None = 0,
|
||||
ReadOnly = 1 << 0,
|
||||
DontEnum = 1 << 1,
|
||||
DontDelete = 1 << 2,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user