12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- #region MIT License
- #endregion
- using System;
- using System.Runtime.InteropServices;
- namespace SharpFont
- {
-
-
-
- internal static class PInvokeHelper
- {
-
-
-
-
-
-
- internal static T PtrToStructure<T>(IntPtr reference)
- {
- return (T)Marshal.PtrToStructure(reference, typeof(T));
- }
- }
- }
|