SDL_GetWindowWMInfo()

This commit is contained in:
Ethan Lee 2013-09-01 16:30:39 -04:00
parent 657c78f956
commit 28ad7c171c

View file

@ -5166,6 +5166,13 @@ namespace SDL2
// private int dummy;
}
/* window refers to an SDL_Window* */
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern SDL_bool SDL_GetWindowWMInfo(
IntPtr window,
ref SDL_SysWMinfo info
);
#endregion
}
}