163 lines
3.6 KiB
C
163 lines
3.6 KiB
C
/*
|
|
static char RCSId[] = "$Id: wine.c,v 1.2 1993/07/04 04:04:21 root Exp root $";
|
|
static char Copyright[] = "Copyright Robert J. Amstadt, 1993";
|
|
*/
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <fcntl.h>
|
|
#include <unistd.h>
|
|
#include <string.h>
|
|
#include <errno.h>
|
|
#include "windows.h"
|
|
#include "module.h"
|
|
#include "task.h"
|
|
#include "selectors.h"
|
|
#include "comm.h"
|
|
#include "user.h"
|
|
#include "menu.h"
|
|
#include "kernel32.h"
|
|
#include "atom.h"
|
|
#include "dialog.h"
|
|
#include "directory.h"
|
|
#include "drive.h"
|
|
#include "message.h"
|
|
#include "syscolor.h"
|
|
#include "sysmetrics.h"
|
|
#include "gdi.h"
|
|
#include "debugger.h"
|
|
#include "dlls.h"
|
|
#include "miscemu.h"
|
|
#include "neexe.h"
|
|
#include "options.h"
|
|
#include "spy.h"
|
|
#include "task.h"
|
|
#include "dce.h"
|
|
#include "pe_image.h"
|
|
#include "stddebug.h"
|
|
#include "debug.h"
|
|
|
|
void init_wine_signals(void);
|
|
|
|
|
|
/***********************************************************************
|
|
* Main initialisation routine
|
|
*/
|
|
int MAIN_Init(void)
|
|
{
|
|
extern BOOL RELAY_Init(void);
|
|
extern BOOL RELAY32_Init(void);
|
|
|
|
int queueSize;
|
|
|
|
SpyInit();
|
|
|
|
#ifndef WINELIB
|
|
/* Initialize relay code */
|
|
if (!RELAY_Init()) return 0;
|
|
|
|
/* Initialize Win32 relay code */
|
|
if (!RELAY32_Init()) return 0;
|
|
#endif
|
|
|
|
/* Create built-in modules */
|
|
if (!MODULE_Init()) return 0;
|
|
|
|
/* Initialise DOS drives */
|
|
if (!DRIVE_Init()) return 0;
|
|
|
|
/* Initialise DOS directories */
|
|
if (!DIR_Init()) return 0;
|
|
|
|
/* Initialize tasks */
|
|
if (!TASK_Init()) return 0;
|
|
|
|
#ifndef WINELIB
|
|
/* Initialize interrupt vectors */
|
|
if (!INT_Init()) return 0;
|
|
|
|
/* Initialize DOS memory */
|
|
if (!DOSMEM_Init()) return 0;
|
|
|
|
/* Initialize signal handling */
|
|
init_wine_signals();
|
|
#endif
|
|
|
|
/* Initialize communications */
|
|
COMM_Init();
|
|
|
|
#ifndef WINELIB
|
|
/* Initialize the DOS memory */
|
|
INT21_Init();
|
|
|
|
/* Create USER heap */
|
|
if (!USER_HeapInit()) return 0;
|
|
#endif
|
|
|
|
/* Global atom table initialisation */
|
|
if (!ATOM_Init()) return 0;
|
|
|
|
/* GDI initialisation */
|
|
if (!GDI_Init()) return 0;
|
|
|
|
/* Initialize system colors and metrics*/
|
|
SYSMETRICS_Init();
|
|
SYSCOLOR_Init();
|
|
|
|
/* Create the DCEs */
|
|
DCE_Init();
|
|
|
|
/* Initialize dialog manager */
|
|
if (!DIALOG_Init()) return 0;
|
|
|
|
/* Initialize menus */
|
|
if (!MENU_Init()) return 0;
|
|
|
|
/* Initialize Win32 data structures */
|
|
if (!KERN32_Init()) return 0;
|
|
|
|
/* Create system message queue */
|
|
queueSize = GetProfileInt( "windows", "TypeAhead", 120 );
|
|
if (!MSG_CreateSysMsgQueue( queueSize )) return 0;
|
|
|
|
return 1;
|
|
}
|
|
|
|
|
|
#ifndef WINELIB
|
|
/**********************************************************************
|
|
* main
|
|
*/
|
|
int _WinMain(int argc, char **argv)
|
|
{
|
|
int i;
|
|
HANDLE handle;
|
|
|
|
if (!MAIN_Init()) return 0;
|
|
|
|
for (i = 1; i < argc; i++)
|
|
{
|
|
if ((handle = WinExec( argv[i], SW_SHOWNORMAL )) < 32)
|
|
{
|
|
fprintf(stderr, "wine: can't exec '%s': ", argv[i]);
|
|
switch (handle)
|
|
{
|
|
case 2: fprintf( stderr, "file not found\n" ); break;
|
|
case 11: fprintf( stderr, "invalid exe file\n" ); break;
|
|
case 21: fprintf( stderr, "win32 executable\n" ); break;
|
|
default: fprintf( stderr, "error=%d\n", handle ); break;
|
|
}
|
|
exit(1);
|
|
}
|
|
}
|
|
|
|
if (Options.debug) DEBUG_SetBreakpoints( TRUE ); /* Setup breakpoints */
|
|
|
|
Yield(); /* Start the first task */
|
|
fprintf( stderr, "WinMain: Should never happen: returned from Yield()\n" );
|
|
return 0;
|
|
}
|
|
|
|
#endif /* #ifndef WINELIB */
|