Date: Tue, 15 Jul 1997 08:34:04 -0700 (PDT) From: KaRNaGE To: Dj Delorie Subject: Adding to Strcuts Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk i was wondering if there was a way to add more elements to a struct in C....allegro has the folowing V3D struct typedef struct V3D { fixed x, y, z; fixed u, v; int c; } and i want to add: fixed nox, noy, noz; fixed nwx, nwy, nwz; for the normals...i use to just comment the structure out and rewrite it...but everytime i upgreade allegro, it copies over the allegro.h file...so my structure is lost...so i'm wondering if i can redefine the structure elsewear in one of my headers....thankz...