usrcatch.h

来自「汇编源代码大全」· C头文件 代码 · 共 52 行

H
52
字号
#ifndef USRCATCH_H
#define USRCATCH_H

/*--------------------------------------------------------------------*/
/*       u s r c a t c h                                              */
/*                                                                    */
/*       SIGUSR handler for UUPC/extended                             */
/*--------------------------------------------------------------------*/

/*--------------------------------------------------------------------*/
/*       Changes Copyright (c) 1989-1993 by Kendra Electronic         */
/*       Wonderworks.                                                 */
/*                                                                    */
/*       All rights reserved except those explicitly granted by       */
/*       the UUPC/extended license agreement.                         */
/*--------------------------------------------------------------------*/

/*--------------------------------------------------------------------*/
/*                          RCS Information                           */
/*--------------------------------------------------------------------*/

/*
 *    $Id: usrcatch.h 1.2 1993/09/29 13:20:49 ahd Exp $
 *
 *    Revision history:
 *    $Log: usrcatch.h $
 * Revision 1.2  1993/09/29  13:20:49  ahd
 * Provide default values for user signals
 *
 * Revision 1.1  1993/09/29  04:56:11  ahd
 * Initial revision
 *
 */

extern unsigned long raised;

void
#ifdef __TURBOC__
__cdecl
#endif
usrhandler( int sig );

#ifndef SIGUSR1
#define SIGUSR1  16     /* User-defined signal 1 */
#endif

#ifndef SIGUSR1
#define SIGUSR2  17     /* User-defined signal 2 */
#endif

#endif

⌨️ 快捷键说明

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