This is what I have....
CAsyncSocket *MySocket = new CAsyncSocket[10];
MySocket[0].Create();
I want to access it this way...
MySocket[0]->Create();
How can I declare a pointer to a pointer? Does this make sense?
Thanks in advance!
Niky Williams
NTS Marketing
Niky.Williams@NTSMarketing.com
CAsyncSocket *MySocket = new CAsyncSocket[10];
MySocket[0].Create();
I want to access it this way...
MySocket[0]->Create();
How can I declare a pointer to a pointer? Does this make sense?
Thanks in advance!
Niky Williams
NTS Marketing
Niky.Williams@NTSMarketing.com