2 * wpa_gui - Application startup
3 * Copyright (c) 2005-2006, Jouni Malinen <j@w1.fi>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
9 * Alternatively, this software may be distributed under the terms of BSD
12 * See README and COPYING for more details.
15 #ifdef CONFIG_NATIVE_WINDOWS
17 #endif /* CONFIG_NATIVE_WINDOWS */
18 #include <QApplication>
22 class WpaGuiApp
: public QApplication
25 WpaGuiApp(int &argc
, char **argv
);
27 #ifndef QT_NO_SESSIONMANAGER
28 virtual void saveState(QSessionManager
&manager
);
34 WpaGuiApp::WpaGuiApp(int &argc
, char **argv
) : QApplication(argc
, argv
)
38 #ifndef QT_NO_SESSIONMANAGER
39 void WpaGuiApp::saveState(QSessionManager
&manager
)
41 QApplication::saveState(manager
);
47 int main(int argc
, char *argv
[])
49 WpaGuiApp
app(argc
, argv
);
53 #ifdef CONFIG_NATIVE_WINDOWS
55 if (WSAStartup(MAKEWORD(2, 0), &wsaData
)) {
56 /* printf("Could not find a usable WinSock.dll\n"); */
59 #endif /* CONFIG_NATIVE_WINDOWS */
65 #ifdef CONFIG_NATIVE_WINDOWS
67 #endif /* CONFIG_NATIVE_WINDOWS */