mirror of
https://github.com/Ryujinx/SDL2-CS.git
synced 2025-01-03 20:45:42 +00:00
Couple more size_t fixes
This commit is contained in:
parent
3185ae7eba
commit
0b6091c655
|
@ -157,7 +157,7 @@ namespace SDL2
|
||||||
);
|
);
|
||||||
|
|
||||||
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
|
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
|
||||||
public delegate uint SDLRWopsReadCallback(
|
public delegate IntPtr SDLRWopsReadCallback(
|
||||||
IntPtr context,
|
IntPtr context,
|
||||||
IntPtr ptr,
|
IntPtr ptr,
|
||||||
IntPtr size,
|
IntPtr size,
|
||||||
|
@ -165,7 +165,7 @@ namespace SDL2
|
||||||
);
|
);
|
||||||
|
|
||||||
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
|
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
|
||||||
public delegate uint SDLRWopsWriteCallback(
|
public delegate IntPtr SDLRWopsWriteCallback(
|
||||||
IntPtr context,
|
IntPtr context,
|
||||||
IntPtr ptr,
|
IntPtr ptr,
|
||||||
IntPtr size,
|
IntPtr size,
|
||||||
|
|
Loading…
Reference in a new issue