102 lines
2.5 KiB
C
102 lines
2.5 KiB
C
/*
|
|
* Main initialization code
|
|
*
|
|
* Copyright 1998 Ulrich Weigand
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
#include "config.h"
|
|
#include "wine/port.h"
|
|
|
|
#include <locale.h>
|
|
#include <stdlib.h>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <fcntl.h>
|
|
#ifdef HAVE_UNISTD_H
|
|
# include <unistd.h>
|
|
#endif
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#ifdef MALLOC_DEBUGGING
|
|
# include <malloc.h>
|
|
#endif
|
|
#include "windef.h"
|
|
#include "wine/winbase16.h"
|
|
#include "drive.h"
|
|
#include "file.h"
|
|
#include "options.h"
|
|
#include "wine/debug.h"
|
|
#include "wine/server.h"
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(server);
|
|
|
|
extern void SHELL_LoadRegistry(void);
|
|
|
|
/***********************************************************************
|
|
* Main initialisation routine
|
|
*/
|
|
BOOL MAIN_MainInit(void)
|
|
{
|
|
#ifdef MALLOC_DEBUGGING
|
|
char *trace;
|
|
|
|
mcheck(NULL);
|
|
if (!(trace = getenv("MALLOC_TRACE")))
|
|
MESSAGE( "MALLOC_TRACE not set. No trace generated\n" );
|
|
else
|
|
{
|
|
MESSAGE( "malloc trace goes to %s\n", trace );
|
|
mtrace();
|
|
}
|
|
#endif
|
|
setbuf(stdout,NULL);
|
|
setbuf(stderr,NULL);
|
|
setlocale(LC_CTYPE,"");
|
|
|
|
/* Load the configuration file */
|
|
if (!PROFILE_LoadWineIni()) return FALSE;
|
|
|
|
/* Initialise DOS drives */
|
|
if (!DRIVE_Init()) return FALSE;
|
|
|
|
/* Initialise DOS directories */
|
|
if (!DIR_Init()) return FALSE;
|
|
|
|
/* Registry initialisation */
|
|
SHELL_LoadRegistry();
|
|
|
|
/* Global boot finished, the rest is process-local */
|
|
CLIENT_BootDone( TRACE_ON(server) );
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* ExitKernel (KERNEL.2)
|
|
*
|
|
* Clean-up everything and exit the Wine process.
|
|
*
|
|
*/
|
|
void WINAPI ExitKernel16( void )
|
|
{
|
|
/* Do the clean-up stuff */
|
|
|
|
WriteOutProfiles16();
|
|
TerminateProcess( GetCurrentProcess(), 0 );
|
|
}
|