Advertisement

Global structure arrays, how to ?

Started by July 26, 2001 07:23 AM
0 comments, last by El Duderino 23 years, 6 months ago
Howdy. I usually do arrays like this (for example) :
  
x = 22;

struct stTextureFile
{
   char UnderTexture[9];
   char OverTexture[9];
   char MaskType[9];
};

stTextureFile *TextureFile = NULL; 
TextureFile = new stTextureFile[x];
  
Everything is ok if I do this within a procedure. But if I do it up the top as a global VC wheels out the serious crime squad. How can I get such a "structure array" as a global ? El Duderino
just make the pointer glabal. then when you allocate memory for the array it will still be global. just call the the 'new' function somewhere during initialization or something.

HHSDrum@yahoo.com
Polarisoft Home Page

Edited by - Julio on July 26, 2001 8:35:05 AM
My HomepageSome shoot to kill, others shoot to mame. I say clear the chamber and let the lord decide. - Reno 911

This topic is closed to new replies.

Advertisement