mirror of
https://github.com/Ryujinx/SDL2-CS.git
synced 2025-02-02 22:51:05 +00:00
Try to fix use of C long in TTF_FontFaces
This commit is contained in:
parent
800ae50c84
commit
e8bf894c31
|
@ -208,9 +208,11 @@ namespace SDL2
|
||||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||||
public static extern void TTF_SetFontKerning(IntPtr font, int allowed);
|
public static extern void TTF_SetFontKerning(IntPtr font, int allowed);
|
||||||
|
|
||||||
/* font refers to a TTF_Font* */
|
/* font refers to a TTF_Font*.
|
||||||
|
* IntPtr is actually a C long! This ignores Win64!
|
||||||
|
*/
|
||||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||||
public static extern long TTF_FontFaces(IntPtr font);
|
public static extern IntPtr TTF_FontFaces(IntPtr font);
|
||||||
|
|
||||||
/* font refers to a TTF_Font* */
|
/* font refers to a TTF_Font* */
|
||||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||||
|
|
Loading…
Reference in a new issue