Global Struch Dec Again...

1
2
3
4
5
6
const int MAXNUM=50;

struct QUICKLAUNCH {
     TCHAR lpTitle[MAX_PATH];
     TCHAR lpPath [MAX_PATH];
};


Now I want to declare this...

QUICKLAUNCH ql[MAXNUM];

I want some of this in a .CPP file and some of it in a .H file so that it will be global and thus visible to a number of .CPP files, but once again I can't get it to work. There's got to be an easy way to do this.
Never mind. Got it answered elsewhere.
Topic archived. No new replies allowed.