1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #region MIT License
- #endregion
- using System;
- namespace SharpFont
- {
-
-
-
-
-
- [Flags]
- [CLSCompliant(false)]
- public enum ClassicKernValidationFlags : uint
- {
-
- Microsoft = 0x4000 << 0,
-
- Apple = 0x4000 << 1,
-
- All = Microsoft | Apple
- }
- }
|