A little confused by this.
Im receiveing this type as a parameter and it should contain names. The way i read it is its an array of pointers to a string.
Code:
LPCTSTR*	names;
names[0] = "jack";
names[1] = "bob";
// is the above acceptable?
I think i just need a little tutorial on how to treat this type.
Thx.