mirror of
https://github.com/Ryujinx/SDL2-CS.git
synced 2025-01-10 21:55:33 +00:00
commit
356cd8068f
12
src/SDL2.cs
12
src/SDL2.cs
|
@ -3109,10 +3109,10 @@ namespace SDL2
|
||||||
[StructLayout(LayoutKind.Sequential)]
|
[StructLayout(LayoutKind.Sequential)]
|
||||||
public struct SDL_Keysym
|
public struct SDL_Keysym
|
||||||
{
|
{
|
||||||
SDL_Scancode scancode;
|
public SDL_Scancode scancode;
|
||||||
SDL_Keycode sym;
|
public SDL_Keycode sym;
|
||||||
SDL_Keymod mod; /* UInt16 */
|
public SDL_Keymod mod; /* UInt16 */
|
||||||
UInt32 unicode; /* Deprecated */
|
public UInt32 unicode; /* Deprecated */
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Get the window which has kbd focus */
|
/* Get the window which has kbd focus */
|
||||||
|
@ -3418,8 +3418,8 @@ namespace SDL2
|
||||||
[StructLayout(LayoutKind.Sequential)]
|
[StructLayout(LayoutKind.Sequential)]
|
||||||
public struct SDL_HapticDirection
|
public struct SDL_HapticDirection
|
||||||
{
|
{
|
||||||
byte type;
|
public byte type;
|
||||||
int dir;
|
public int dir;
|
||||||
}
|
}
|
||||||
|
|
||||||
[StructLayout(LayoutKind.Sequential)]
|
[StructLayout(LayoutKind.Sequential)]
|
||||||
|
|
Loading…
Reference in a new issue