12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- #region MIT License
- #endregion
- using System;
- namespace SharpFont
- {
-
-
-
-
-
-
-
- [Flags]
- public enum OpenFlags
- {
-
-
-
- Memory = 0x01,
-
-
-
- Stream = 0x02,
-
-
-
- PathName = 0x04,
-
-
-
- Driver = 0x08,
-
-
-
- Params = 0x10
- }
- }
|