sysalias.h

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

H
45
字号
/*--------------------------------------------------------------------*/
/*    S y s A l i a s . H                                             */
/*                                                                    */
/*    System wide alias support for UUPC/extended                     */
/*--------------------------------------------------------------------*/

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

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

/*
 *    $Id: SYSALIAS.H 1.2 1993/04/11 00:36:13 ahd Exp $
 *
 *    $Log: SYSALIAS.H $
 * Revision 1.2  1993/04/11  00:36:13  ahd
 * Global edits for year, TEXT, etc.
 *
 * Revision 1.1  1992/12/04  01:03:49  ahd
 * Initial revision
 *
 */

/*--------------------------------------------------------------------*/
/*    System alias table; includes name of alias, and start and       */
/*    end position of alias data in the system alias file             */
/*--------------------------------------------------------------------*/

typedef struct _ALIASTABLE {
      char *alias;
      long start;
      long end;
      } ALIASTABLE;

extern char *SysAliases;      /* Name of system alias file           */

ALIASTABLE *checkalias( const char *user );

⌨️ 快捷键说明

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