 |
BorlandTalk.com Borland discussion newsgroups
|
| View previous topic :: View next topic |
| Author |
Message |
Hans Galema Guest
|
Posted: Mon Dec 12, 2005 9:39 am Post subject: Re: Global Variables in C++Builder (CLX) |
|
|
Bono wrote:
| Quote: | I wrote a "TGlobals.h" file:
#ifndef TGlobalsH
#define TGlobalsH
struct glbVars{
int x1box;
int x2box;
};
extern struct glbVars Globals;
#endif
|
You have to add a TGlobals.cpp file to your
project where you instantiate the referred struct.
struct glbVars Globals;
You can not declare it extern before you got one.
Hans.
|
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|