123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- #region MIT License
- #endregion
- using System;
- using System.Runtime.InteropServices;
- #if WIN64
- using FT_26Dot6 = System.Int32;
- using FT_Fixed = System.Int32;
- using FT_Long = System.Int32;
- using FT_Pos = System.Int32;
- using FT_ULong = System.UInt32;
- #else
- using FT_26Dot6 = System.IntPtr;
- using FT_Fixed = System.IntPtr;
- using FT_Long = System.IntPtr;
- using FT_Pos = System.IntPtr;
- using FT_ULong = System.UIntPtr;
- #endif
- namespace SharpFont.Internal
- {
-
-
-
-
-
-
- [StructLayout(LayoutKind.Sequential)]
- internal class BitmapSizeRec
- {
- internal short height;
- internal short width;
- internal FT_Pos size;
- internal FT_Pos x_ppem;
- internal FT_Pos y_ppem;
- internal static int SizeInBytes { get { return Marshal.SizeOf(typeof(BitmapSizeRec)); } }
- }
- }
|