Sophie

Sophie

distrib > Mageia > 3 > x86_64 > media > tainted-updates > by-pkgid > d829997167aa02812e15e8a5c802823a > files > 25

vlc-2.0.10-1.mga3.tainted.x86_64.rpm

/******************************
 * Qt player using libVLC     *
 * By protonux                *
 *                            *
 * Under WTFPL                *
 ******************************/

#include <QApplication>
#include "player.h"

#ifdef Q_WS_X11
    #include <X11/Xlib.h>
#endif

int main(int argc, char *argv[]) {
#ifdef Q_WS_X11
    XInitThreads();
#endif

    QApplication app(argc, argv);

    Mwindow player;
    player.show();

    return app.exec();
}