Sophie

Sophie

distrib > Mageia > 7 > armv7hl > by-pkgid > 8794e96358fef13ac19e205b2afec798 > files > 23

vlc-3.0.11.1-1.mga7.armv7hl.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();
}