Release 0.2.0
[wine/multimedia.git] / user.c
blob280ba3ff1194271db2e7cf8bd9b8d0125670a09d
1 static char RCSId[] = "$Id: user.c,v 1.2 1993/07/04 04:04:21 root Exp root $";
2 static char Copyright[] = "Copyright Robert J. Amstadt, 1993";
4 #include <stdio.h>
5 #include <stdlib.h>
6 #include "prototypes.h"
8 #define DEFAULT_MSG_QUEUE_SIZE 8
11 /**********************************************************************
12 * USER_InitApp
14 * Load necessary resources?
16 int
17 USER_InitApp(int hInstance)
19 /* Initialize built-in window classes */
20 WIDGETS_Init();
22 /* Create task message queue */
23 if (!SetMessageQueue( DEFAULT_MSG_QUEUE_SIZE )) return 0;
25 return 1;