Click here to Skip to main content
16,004,919 members
Home / Discussions / Managed C++/CLI
   

Managed C++/CLI

 
QuestionMessageBox in Vc++2005 Pin
lavy288320-May-07 2:36
lavy288320-May-07 2:36 
AnswerRe: MessageBox in Vc++2005 Pin
Mark Salsbery20-May-07 7:05
Mark Salsbery20-May-07 7:05 
AnswerRe: MessageBox in Vc++2005 Pin
Anurag Gandhi20-May-07 21:28
professionalAnurag Gandhi20-May-07 21:28 
GeneralRe: MessageBox in Vc++2005 Pin
lavy288321-May-07 4:12
lavy288321-May-07 4:12 
QuestionLNK4248 error Pin
subramanyeswari17-May-07 23:19
subramanyeswari17-May-07 23:19 
AnswerLNK4248 error Pin
subramanyeswari17-May-07 23:30
subramanyeswari17-May-07 23:30 
QuestionCollapsable Side Menus Pin
john john mackey17-May-07 9:47
john john mackey17-May-07 9:47 
GeneralPointer to function as arguments in visual c++ Pin
dodoxor17-May-07 7:27
dodoxor17-May-07 7:27 
hi..i've a problem with a prject in Visual c++...i've this class:
class A{
public:
A();
void jpeg_received(jpg_t* jpg);
void exit_capturing(int code);
int rec(void);
public:
camaddr_t camaddr;
CAPID capid;
};

A::A()
{...}

void A::jpeg_received(jpg_t* jpg)
{....//code to save a file jpg...}
void A::exit_capturing(int code)
{....//code to print a result for code's value...}
int A::rec(void)
{.......
capid=ccap_start_capturing(&camaddr,jpeg_received,exit_capturing);
..........}

I've to pass to ccap_start_capturing
(function defined in a 'c file' of another project
PUBLIC CAPID ccap_start_capturing(camaddr_t* camaddr, void(*jpeg_received)(jpg_t* jpg), void(*exit_capturing)(int code) )
two function "jpeg_received" and "exit_capturing" but i've this compile error:

.\A.cpp(114) : error C3867: 'A::jpeg_received': function call missing argument list; use '&A::jpeg_received' to create a pointer to member
.\A.cpp(114) : error C3867: 'A::exit_capturing': function call missing argument list; use '&A::exit_capturing' to create a pointer to member

Can anyone help me?
Thanks, regards.
GeneralRe: Pointer to function as arguments in visual c++ Pin
Mark Salsbery17-May-07 7:59
Mark Salsbery17-May-07 7:59 
AnswerRe: Pointer to function as arguments in visual c++ Pin
sthotakura21-May-07 9:57
sthotakura21-May-07 9:57 
Questionprogram code fro a tough question Pin
MaddySays17-May-07 0:56
MaddySays17-May-07 0:56 
AnswerRe: program code fro a tough question Pin
Christian Graus17-May-07 1:07
protectorChristian Graus17-May-07 1:07 
GeneralRe: program code fro a tough question Pin
MaddySays17-May-07 1:18
MaddySays17-May-07 1:18 
GeneralRe: program code fro a tough question Pin
Christian Graus17-May-07 1:32
protectorChristian Graus17-May-07 1:32 
GeneralRe: program code for a tough question Pin
MaddySays17-May-07 1:45
MaddySays17-May-07 1:45 
GeneralRe: program code for a tough question Pin
Christian Graus17-May-07 2:13
protectorChristian Graus17-May-07 2:13 
Questionstrcat_s question [modified] Pin
Stick^16-May-07 12:48
Stick^16-May-07 12:48 
AnswerRe: strcat_s question Pin
Christian Graus16-May-07 13:10
protectorChristian Graus16-May-07 13:10 
QuestionError 206 error C2665: 'qsort' : none of the 2 overloads could convert all the argument types Pin
subramanyeswari16-May-07 5:55
subramanyeswari16-May-07 5:55 
AnswerRe: Error 206 error C2665: 'qsort' : none of the 2 overloads could convert all the argument types Pin
subramanyeswari16-May-07 6:02
subramanyeswari16-May-07 6:02 
GeneralRe: Error 206 error C2665: 'qsort' : none of the 2 overloads could convert all the argument types Pin
Mark Salsbery16-May-07 6:33
Mark Salsbery16-May-07 6:33 
Questionlnk2028 unresolved token Pin
subramanyeswari16-May-07 2:16
subramanyeswari16-May-07 2:16 
AnswerRe: lnk2028 unresolved token Pin
Mark Salsbery16-May-07 5:48
Mark Salsbery16-May-07 5:48 
GeneralRe: lnk2028 unresolved token Pin
subramanyeswari16-May-07 5:51
subramanyeswari16-May-07 5:51 
QuestionLogging Pin
hansipet16-May-07 0:06
hansipet16-May-07 0:06 

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.