matherr.c

来自「一个类似windows」· C语言 代码 · 共 34 行

C
34
字号
#include <precomp.h>
#include <math.h>


int _matherr(struct _exception* e)
{
    return 0;
}

/*
 * not exported by NTDLL
 *
 * @unimplemented
 */
void __setusermatherr(int (*handler)(struct _exception*))
{

}


#define _FPIEEE_RECORD void

/*
 * @unimplemented
 */
int _fpieee_flt(
        unsigned long exception_code,
        struct _EXCEPTION_POINTERS* ExceptionPointer,
        int (*handler)(_FPIEEE_RECORD*)
        )
{
    return 0;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?