Sophie

Sophie

distrib > Mageia > 5 > x86_64 > media > tainted-release > by-pkgid > 8f7697fe91ffdb46405e29476e1bbdf6 > files > 24

vlc-2.2.1-1.mga5.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();
}