Example #1
0
 public static int SDL_ShowSimpleMessageBox(
     SDL_MessageBoxFlags flags,
     string title,
     string message,
     IntPtr window
     )
 {
     return(INTERNAL_SDL_ShowSimpleMessageBox(
                flags,
                UTF8_ToNative(title),
                UTF8_ToNative(message),
                window
                ));
 }
Example #2
0
 public static void SDL_ShowSimpleMessageBox(SDL_MessageBoxFlags sdlMessageboxError, string error, string msg, IntPtr windowHandle)
 {
 }
Example #3
0
 private static extern int INTERNAL_SDL_ShowSimpleMessageBox(
     SDL_MessageBoxFlags flags,
     byte[] title,
     byte[] message,
     IntPtr window
     );