/****************************** * Qt player using libVLC * * By protonux * * * * Under WTFPL * ******************************/ #include #include "player.h" #ifdef Q_WS_X11 #include #endif #ifdef QT_STATIC # include # ifdef _WIN32 Q_IMPORT_PLUGIN(QWindowsIntegrationPlugin) # endif #endif int main(int argc, char *argv[]) { #ifdef Q_WS_X11 XInitThreads(); #endif QApplication app(argc, argv); Mwindow player; player.show(); return app.exec(); }