X-Git-Url: https://git.distorted.org.uk/~mdw/become/blobdiff_plain/e6677daf3e57a063da5a171e34b7ec91ed740f91..4c37c6af624a9d4dabadac32a5e566d388ee78d7:/src/name.h diff --git a/src/name.h b/src/name.h index 85e170e..666ce3b 100644 --- a/src/name.h +++ b/src/name.h @@ -1,10 +1,10 @@ /* -*-c-*- * - * $Id: name.h,v 1.3 1997/08/20 16:18:05 mdw Exp $ + * $Id: name.h,v 1.7 2003/10/12 00:14:55 mdw Exp $ * * Looking up of names in symbol tables * - * (c) 1997 EBI + * (c) 1998 EBI */ /*----- Licensing notice --------------------------------------------------* @@ -29,7 +29,20 @@ /*----- Revision history --------------------------------------------------* * * $Log: name.h,v $ - * Revision 1.3 1997/08/20 16:18:05 mdw + * Revision 1.7 2003/10/12 00:14:55 mdw + * Major overhaul. Now uses DSA signatures rather than the bogus symmetric + * encrypt-and-hope thing. Integrated with mLib and Catacomb. + * + * Revision 1.6 1998/04/23 13:24:21 mdw + * Fix multiple inclusion guard macro name. + * + * Revision 1.5 1998/01/12 16:46:15 mdw + * Fix copyright date. + * + * Revision 1.4 1997/09/17 10:26:11 mdw + * Use rewritten class handler. Support `none' class. + * + * Revision 1.3 1997/08/20 16:18:05 mdw * Replace `name_reinit' by `name_end' for more sensible restart. * * Revision 1.2 1997/08/04 10:24:24 mdw @@ -40,8 +53,8 @@ * */ -#ifndef NAMES_H -#define NAMES_H +#ifndef NAME_H +#define NAME_H #ifdef __cplusplus extern "C" { @@ -49,19 +62,17 @@ /*----- Required headers --------------------------------------------------*/ +#include + #ifndef CLASS_H # include "class.h" #endif -#ifndef SYM_H -# include "sym.h" -#endif - /*----- Data structures ---------------------------------------------------*/ typedef struct name { sym_base base; /* Base block for symbol table */ - classdef *c; /* Base class pointer */ + class_node *c; /* Base class pointer */ } name; /*----- Functions provided ------------------------------------------------*/