Cleaned up font encoding handling. Added 'Ignore#' option to the
[wine/multimedia.git] / server / main.c
blobd7f06c9a1044fa61486093b8b49fa76b413de11e
1 /*
2 * Server main function
4 * Copyright (C) 1998 Alexandre Julliard
5 */
7 #include <ctype.h>
8 #include <fcntl.h>
9 #include <stdio.h>
10 #include <stdlib.h>
11 #include <unistd.h>
13 #include "server.h"
14 #include "server/object.h"
16 int main( int argc, char *argv[] )
18 int fd;
19 extern void server_main_loop( int fd );
21 if (argc != 2) goto error;
22 if (!isdigit( *argv[1] )) goto error;
23 fd = atoi( argv[1] );
24 /* make sure the fd is valid */
25 if (fcntl( fd, F_GETFL, 0 ) == -1) goto error;
27 debug_level = 1;
29 if (debug_level) printf( "Server: starting (pid=%d)\n", getpid() );
30 server_main_loop( fd );
31 if (debug_level) printf( "Server: exiting (pid=%d)\n", getpid() );
32 exit(0);
34 error:
35 fprintf( stderr, "%s: must be run from Wine.\n", argv[0] );
36 exit(1);