On 9/15/07, blackdog blackdog@ipowerhouse.com wrote:
So, given that this is late in the day, maybe for now I can just add into struct GeanyData, void *buildInfo
As long as you declare it as a pointer to a struct, and you don't try to dereference the pointer before including the header, I think you can just do it this way, instead of void pointer :
struct BuildInfo *build_info;
Also IMO it is always a good idea to add new fields to the *end* of a struct, to keep the existing offsets the same.
- Jeff