tinycc/win32/lib/crt1.c

49 lines
1.0 KiB
C
Raw Normal View History

2005-04-17 13:11:15 +00:00
// =============================================
// crt1.c
#include <stdlib.h>
// For ExitProcess
#include <windows.h>
2005-04-17 13:11:15 +00:00
#define __UNKNOWN_APP 0
#define __CONSOLE_APP 1
#define __GUI_APP 2
void __set_app_type(int);
void _controlfp(unsigned a, unsigned b);
typedef struct
{
2009-07-18 20:07:10 +00:00
int newmode;
2005-04-17 13:11:15 +00:00
} _startupinfo;
// prototype of __getmainargs:
// in msvcrt v6.0 : return void
// in msvcrt v7.0 : return int
// using first for compatibility
void __getmainargs(int *pargc, char ***pargv, char ***penv, int globb, _startupinfo*);
2005-04-17 13:11:15 +00:00
int main(int argc, char **argv, char **env);
int _start(void)
{
__TRY__
2014-11-23 04:51:38 +00:00
int argc; char **argv; char **env;
2009-07-18 20:07:10 +00:00
_startupinfo start_info = {0};
2005-04-17 13:11:15 +00:00
2009-07-18 20:07:10 +00:00
_controlfp(0x10000, 0x30000);
__set_app_type(__CONSOLE_APP);
2005-04-17 13:11:15 +00:00
argv = NULL;
__getmainargs(&argc, &argv, &env, 0, &start_info);
// check success comparing if argv now is not NULL
2014-11-23 04:51:38 +00:00
if (argv != NULL)
{
exit( main(argc, argv, env) );
}
else
{
ExitProcess(-1);
}
2005-04-17 13:11:15 +00:00
}
// =============================================