Click here to Skip to main content
15,887,175 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Questionpassing pointer in thunking Pin
indra2022-Feb-06 1:12
indra2022-Feb-06 1:12 
AnswerRe: passing pointer in thunking Pin
toxcct22-Feb-06 1:54
toxcct22-Feb-06 1:54 
GeneralRe: passing pointer in thunking Pin
indra2022-Feb-06 2:34
indra2022-Feb-06 2:34 
GeneralRe: passing pointer in thunking Pin
toxcct22-Feb-06 2:39
toxcct22-Feb-06 2:39 
GeneralRe: passing pointer in thunking Pin
indra2022-Feb-06 2:56
indra2022-Feb-06 2:56 
Questionabt CList Pin
namaskaaram21-Feb-06 23:57
namaskaaram21-Feb-06 23:57 
AnswerRe: abt CList Pin
Maximilien22-Feb-06 0:58
Maximilien22-Feb-06 0:58 
AnswerRe: abt CList Pin
David Crow22-Feb-06 3:15
David Crow22-Feb-06 3:15 
namaskaaram wrote:
then is the below the correct way of declaring it :
CList<abc*,abc*> x;


That is one correct way, but certainly not the only way.

For the former:

ABC *a = new ABC(), *b;
x.AddHead(a);     // to store
POSITION pos = x.GetHeadPosition();
b = x.GetAt(pos); // to retrieve
For the latter:

ABC a, *b;
x.AddHead(a);     // to store
POSITION pos = x.GetHeadPosition();
b = x.GetAt(pos); // to retrieve



"Let us be thankful for the fools. But for them the rest of us could not succeed." - Mark Twain


GeneralRe: abt CList Pin
namaskaaram22-Feb-06 17:04
namaskaaram22-Feb-06 17:04 
GeneralRe: abt CList Pin
David Crow23-Feb-06 2:20
David Crow23-Feb-06 2:20 
GeneralRe: abt CList Pin
namaskaaram24-Feb-06 0:45
namaskaaram24-Feb-06 0:45 
QuestionCHttpConnection Pin
murali_utr21-Feb-06 23:12
murali_utr21-Feb-06 23:12 
Questionlib file location Pin
Chintoo72321-Feb-06 21:56
Chintoo72321-Feb-06 21:56 
AnswerRe: lib file location Pin
Malli_S21-Feb-06 22:04
Malli_S21-Feb-06 22:04 
GeneralRe: lib file location Pin
Chintoo72321-Feb-06 22:13
Chintoo72321-Feb-06 22:13 
AnswerRe: lib file location Pin
Malli_S21-Feb-06 22:31
Malli_S21-Feb-06 22:31 
GeneralRe: lib file location Pin
Malli_S21-Feb-06 22:33
Malli_S21-Feb-06 22:33 
Questionhow to get the selected files name during Drag&Drop's mouse moving process Pin
welli21-Feb-06 21:56
welli21-Feb-06 21:56 
AnswerRe: how to get the selected files name during Drag&Drop's mouse moving process Pin
James R. Twine22-Feb-06 2:30
James R. Twine22-Feb-06 2:30 
GeneralRe: how to get the selected files name during Drag&Drop's mouse moving process Pin
welli22-Feb-06 14:20
welli22-Feb-06 14:20 
Questionto call a second dll from the First Dll in VC++ application. Pin
phijophlip21-Feb-06 20:22
phijophlip21-Feb-06 20:22 
AnswerRe: to call a second dll from the First Dll in VC++ application. Pin
Eytukan21-Feb-06 20:53
Eytukan21-Feb-06 20:53 
QuestionService troubles Pin
Esmo200021-Feb-06 19:44
Esmo200021-Feb-06 19:44 
GeneralRe: Service troubles Pin
Malli_S21-Feb-06 20:43
Malli_S21-Feb-06 20:43 
GeneralRe: Service troubles Pin
Esmo200021-Feb-06 20:48
Esmo200021-Feb-06 20:48 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.