00001 /* 00002 $Header: /home/cvsuser/cvsroot/JSOC/proj/mag/synop/apps/nametables.h,v 1.1 2014/02/11 18:30:19 arta Exp $ 00003 $Log: nametables.h,v $ 00004 Revision 1.1 2014/02/11 18:30:19 arta 00005 Finish removing dependencies on Yangs home directory. Added several headers needed for the synop project, but that resided in Yangs myproj directory. 00006 00007 * Revision 1.1 90/09/17 14:32:22 phil 00008 * Initial revision 00009 * 00010 */ 00011 00012 #ifndef NAMETABLES_DEF 00013 00014 #define NAMETABLES_DEF 00015 00016 typedef struct 00017 { 00018 char *nm; 00019 int action; 00020 } nametable; 00021 00022 extern nametable yesno[],kindnames[],accnames[],statenames[], 00023 errnames[],typenames[],resnames[]; 00024 00025 /* See nametables.c for table initializations. */ 00026 00027 #endif