Click here to Skip to main content
15,915,042 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Plz sir slow down Pin
Rajkumar R13-May-08 5:33
Rajkumar R13-May-08 5:33 
GeneralRe: Plz sir slow down Pin
CPallini13-May-08 4:47
mveCPallini13-May-08 4:47 
GeneralRe: Plz sir slow down Pin
Rajkumar R13-May-08 18:59
Rajkumar R13-May-08 18:59 
GeneralRe: Plz sir slow down Pin
CPallini13-May-08 20:55
mveCPallini13-May-08 20:55 
AnswerRe: TCHAR porting issues while porting from VC6 to VC8 Pin
CPallini13-May-08 4:05
mveCPallini13-May-08 4:05 
AnswerRe: TCHAR porting issues while porting from VC6 to VC8 Pin
Iain Clarke, Warrior Programmer13-May-08 5:15
Iain Clarke, Warrior Programmer13-May-08 5:15 
QuestionPassing a function as parameter. Pin
mikyivy13-May-08 3:45
mikyivy13-May-08 3:45 
AnswerRe: Passing a function as parameter. Pin
Rajkumar R13-May-08 3:51
Rajkumar R13-May-08 3:51 
mikyivy wrote:
postorder(void compute_result(char *test),full_tree); // <- is this legal?


not the declaration, you can pass the function pointer.
postorder(compute_result, full_tree);


provided Process is defined as
typedef void (* Process)(char *test);


mikyivy wrote:
void BINARY::compute_result()

[Added]
if compute_result is not a static member then you need to use pointer to member.
[/Added]
AnswerRe: Passing a function as parameter. Pin
David Crow13-May-08 3:54
David Crow13-May-08 3:54 
AnswerRe: Passing a function as parameter. Pin
Mark Salsbery13-May-08 5:16
Mark Salsbery13-May-08 5:16 
QuestionReading from and Writing to a USB device using ReadFile() and WriteFile() Pin
koumodaki13-May-08 3:44
koumodaki13-May-08 3:44 
AnswerRe: Reading from and Writing to a USB device using ReadFile() and WriteFile() Pin
Cedric Moonen13-May-08 4:02
Cedric Moonen13-May-08 4:02 
GeneralRe: Reading from and Writing to a USB device using ReadFile() and WriteFile() Pin
koumodaki13-May-08 4:11
koumodaki13-May-08 4:11 
GeneralRe: Reading from and Writing to a USB device using ReadFile() and WriteFile() Pin
Cedric Moonen13-May-08 4:24
Cedric Moonen13-May-08 4:24 
GeneralRe: Reading from and Writing to a USB device using ReadFile() and WriteFile() Pin
koumodaki13-May-08 4:49
koumodaki13-May-08 4:49 
AnswerRe: Reading from and Writing to a USB device using ReadFile() and WriteFile() Pin
Iain Clarke, Warrior Programmer13-May-08 4:09
Iain Clarke, Warrior Programmer13-May-08 4:09 
AnswerRe: Reading from and Writing to a USB device using ReadFile() and WriteFile() Pin
Hamid_RT14-May-08 6:25
Hamid_RT14-May-08 6:25 
QuestionSMTP Mail Class [modified] Pin
Programm3r13-May-08 3:12
Programm3r13-May-08 3:12 
QuestionRe: Mail Class Pin
CPallini13-May-08 3:16
mveCPallini13-May-08 3:16 
AnswerRe: Mail Class Pin
Programm3r13-May-08 3:30
Programm3r13-May-08 3:30 
GeneralRe: Mail Class Pin
CPallini13-May-08 3:36
mveCPallini13-May-08 3:36 
GeneralRe: Mail Class Pin
Programm3r13-May-08 3:44
Programm3r13-May-08 3:44 
AnswerRe: Mail Class Pin
David Crow13-May-08 3:17
David Crow13-May-08 3:17 
QuestionRe: Mail Class Pin
Programm3r13-May-08 3:33
Programm3r13-May-08 3:33 
AnswerRe: Mail Class Pin
David Crow13-May-08 3:51
David Crow13-May-08 3:51 

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.