view src/main/linux/SDL_Qtopia_main.cc @ 383:5e31d8bfffcf

SDL_PushEvent() now returns values as documented.
author Ryan C. Gordon <icculus@icculus.org>
date Wed, 29 May 2002 22:29:46 +0000
parents 11c8a7684f74
children d15bef937f00
line wrap: on
line source


/* Include the SDL main definition header */
#include "SDL_main.h"
#ifdef main
#undef main
#endif
#ifdef QWS
#include <qpe/qpeapplication.h>
#endif

extern int SDL_main(int argc, char *argv[]);

int main(int argc, char *argv[])
{
#ifdef QWS
  // This initializes the Qtopia application. It needs to be done here
  // because it parses command line options.
  QPEApplication app(argc, argv);
  QWidget dummy;
  app.showMainWidget(&dummy);
#endif
  return(SDL_main(argc, argv));
}