⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 signal.h

📁 微软的基于HMM的人脸识别原代码, 非常经典的说
💻 H
字号:
/*  This header file is machine generated. 
Modify EiC/config/genstdio.c, or the target independent source 
files it reads, in order to modify this file.  Any 
direct modifications to this file will be lost. 
*/

#ifndef EiC_signal_H
#define EiC_signal_H

#pragma push_safeptr

#define SIGABRT	22
#define SIGINT	2
#define SIGILL	4
#define SIGFPE	8
#define SIGSEGV	11
#define SIGTERM	15

/* signal() args & returns */
typedef int  sig_atomic_t;
void (*signal(int sig, void (*func)(int a))) (int a);
int raise(int sig);
#define SIG_ERR       (void (*)(int)) -1
#define SIG_DFL       (void (*)(int)) 0
#define SIG_IGN       (void (*)(int)) 1

#pragma pop_ptr

#endif    /* end EiC_signal_H */

⌨️ 快捷键说明

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