📄 crtmain.c
字号:
/* $Id: crtmain.c 21262 2006-03-08 23:27:16Z audit $
*
* ReactOS MSVCRT.DLL Compatibility Library
*/
#include <precomp.h>
#define NDEBUG
#include <internal/debug.h>
#ifndef __GNUC__
/* GLOBAL VARIABLES *******************************************************/
int _fltused;
/* FUNCTIONS **************************************************************/
/*
* @unimplemented
*/
int
STDCALL
_except_handler3(void)
{
return 0;
}
/*
* @unimplemented
*/
int
STDCALL
_local_unwind2(void)
{
return 0;
}
#else /*__GNUC__*/
#endif /*__GNUC__*/
/*
int __cdecl _allmul(void)
{
return 0;
}
int __cdecl _allshl(void)
{
return 0;
}
void __cdecl _chkesp(int value1, int value2)
{
}
int __cdecl _alloca_probe(void)
{
return 0;
}
int STDCALL _abnormal_termination(void)
{
return 0;
}
int STDCALL _setjmp(void)
{
return 0;
}
*/
/*
BOOL WINAPI DllMain(HANDLE hInst, ULONG ul_reason_for_call, LPVOID lpReserved);
int STDCALL _DllMainCRTStartup(HANDLE hInst, ULONG ul_reason_for_call, LPVOID lpReserved)
{
BOOL result;
//__fileno_init();
//result = DllMain(hInst, ul_reason_for_call, lpReserved);
result = DllMain(hInst, DLL_PROCESS_ATTACH, lpReserved);
return (result ? 1 : 0);
}
*/
/* EOF */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -