prefix Der_class with ASN1_C_ to avoid problems with system headerfiles that pollute the name space

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@15255 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2005-05-29 14:23:01 +00:00
parent 084b3b2d2a
commit 8e78ed6e48
6 changed files with 35 additions and 30 deletions

View File

@@ -38,7 +38,12 @@
#include <time.h>
typedef enum {UNIV = 0, APPL = 1, CONTEXT = 2 , PRIVATE = 3} Der_class;
typedef enum {
ASN1_C_UNIV = 0,
ASN1_C_APPL = 1,
ASN1_C_CONTEXT = 2 ,
ASN1_C_PRIVATE = 3
} Der_class;
typedef enum {PRIM = 0, CONS = 1} Der_type;