--- deliantra/server/include/material.h 2006/02/03 07:12:49 1.1 +++ deliantra/server/include/material.h 2006/08/13 17:16:02 1.2 @@ -48,7 +48,7 @@ #define M_SPECIAL 8192 /* when displaying names, don't show the materialname */ -typedef struct _materialtype { +struct materialtype_t { const char *name; const char *description; int material; @@ -63,10 +63,10 @@ sint8 sp; int weight; int value; - struct _materialtype *next; -} materialtype_t; + struct materialtype_t *next; +}; -EXTERN materialtype_t *materialt; +extern materialtype_t *materialt; #endif /* MATERIAL_H_1 */