Install the wine server in $(bindir) and exec it from there.
[wine] / server / main.c
1 /*
2  * Server main function
3  *
4  * Copyright (C) 1998 Alexandre Julliard
5  */
6
7 #include <ctype.h>
8 #include <fcntl.h>
9 #include <stdio.h>
10 #include <stdlib.h>
11 #include <unistd.h>
12
13 #include "object.h"
14 #include "thread.h"
15
16 int main( int argc, char *argv[] )
17 {
18     int fd;
19
20     if (argc != 2) goto error;
21     if (!isdigit( *argv[1] )) goto error;
22     fd = atoi( argv[1] );
23     /* make sure the fd is valid */
24     if (fcntl( fd, F_GETFL, 0 ) == -1) goto error;
25
26 /*    debug_level = 1; */
27
28     if (debug_level) fprintf( stderr, "Server: starting (pid=%ld)\n", (long) getpid() );
29     create_initial_thread( fd );
30     if (debug_level) fprintf( stderr, "Server: exiting (pid=%ld)\n", (long) getpid() );
31
32 #ifdef DEBUG_OBJECTS
33     dump_objects();  /* dump any remaining objects */
34 #endif
35
36     exit(0);
37
38  error:    
39     fprintf( stderr, "%s: must be run from Wine.\n", argv[0] );
40     exit(1);
41 }