23 lines
585 B
C
23 lines
585 B
C
//=======================================================================
|
|
// Copyright XashXT Group 2007 ©
|
|
// export.c - main engine launcher
|
|
//=======================================================================
|
|
|
|
#include "launch.h"
|
|
|
|
/*
|
|
=================
|
|
Main Entry Point
|
|
=================
|
|
*/
|
|
DLLEXPORT int CreateAPI( const char *hostname, bool console )
|
|
{
|
|
com_strncpy( Sys.progname, hostname, sizeof( Sys.progname ));
|
|
Sys.hooked_out = console;
|
|
|
|
Sys_Init();
|
|
Sys.Main();
|
|
Sys_Exit();
|
|
|
|
return 0;
|
|
} |