1 #ifdef CONFIG_NATIVE_WINDOWS
3 #endif /* CONFIG_NATIVE_WINDOWS */
4 #include <qapplication.h>
7 int main( int argc
, char ** argv
)
9 QApplication
a( argc
, argv
);
13 #ifdef CONFIG_NATIVE_WINDOWS
15 if (WSAStartup(MAKEWORD(2, 0), &wsaData
)) {
16 printf("Could not find a usable WinSock.dll\n");
19 #endif /* CONFIG_NATIVE_WINDOWS */
22 a
.connect( &a
, SIGNAL( lastWindowClosed() ), &a
, SLOT( quit() ) );
25 #ifdef CONFIG_NATIVE_WINDOWS
27 #endif /* CONFIG_NATIVE_WINDOWS */