Click here to Skip to main content
15,797,908 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Cross Reference/Reporting Tool avaiable which does not resolve macros? Pin
David Crow22-Apr-20 7:43
David Crow22-Apr-20 7:43 
GeneralRe: Cross Reference/Reporting Tool avaiable which does not resolve macros? Pin
Richard MacCutchan22-Apr-20 7:51
mveRichard MacCutchan22-Apr-20 7:51 
Question'get_osfhandle': identifier not found Pin
_Flaviu20-Apr-20 1:13
_Flaviu20-Apr-20 1:13 
AnswerRe: 'get_osfhandle': identifier not found Pin
Richard MacCutchan20-Apr-20 1:37
mveRichard MacCutchan20-Apr-20 1:37 
GeneralRe: 'get_osfhandle': identifier not found Pin
leon de boer20-Apr-20 3:05
leon de boer20-Apr-20 3:05 
GeneralRe: 'get_osfhandle': identifier not found Pin
Richard MacCutchan20-Apr-20 4:28
mveRichard MacCutchan20-Apr-20 4:28 
QuestionSOLVED Passing function with parameters as parameter Pin
Vaclav_18-Apr-20 9:38
Vaclav_18-Apr-20 9:38 
AnswerRe: Passing function with parameters as parameter Pin
Greg Utas18-Apr-20 10:07
mveGreg Utas18-Apr-20 10:07 
To add more parameters, just extend the argument list: (int parameter1, int parameter2) and so on.

All you have at this point is a declaration and definition of the function OpenGL_Stencil. Its parameter is a function that returns void and takes one int parameter. The next step is to implement a function with that signature and pass it as an argument to OpenGL_Stencil.
void Something(int value) { /* code */ }
After which invoking OpenGL_Stencil(Something) should cause OpenGL_Stencil to invoke Something.

GeneralRe: Passing function with parameters as parameter Pin
Vaclav_18-Apr-20 10:22
Vaclav_18-Apr-20 10:22 
AnswerRe: Passing function with parameters as parameter Pin
Greg Utas18-Apr-20 11:24
mveGreg Utas18-Apr-20 11:24 
GeneralRe: Passing function with parameters as parameter Pin
Vaclav_18-Apr-20 11:52
Vaclav_18-Apr-20 11:52 
GeneralRe: Passing function with parameters as parameter Pin
Greg Utas18-Apr-20 12:04
mveGreg Utas18-Apr-20 12:04 
GeneralRe: Passing function with parameters as parameter Pin
Vaclav_19-Apr-20 6:47
Vaclav_19-Apr-20 6:47 
GeneralRe: Passing function with parameters as parameter Pin
Greg Utas19-Apr-20 7:05
mveGreg Utas19-Apr-20 7:05 
GeneralSOLVED Re: Passing function with parameters as parameter Pin
Vaclav_19-Apr-20 10:03
Vaclav_19-Apr-20 10:03 
AnswerRe: Passing function with parameters as parameter Pin
Richard MacCutchan18-Apr-20 22:21
mveRichard MacCutchan18-Apr-20 22:21 
QuestionMath problem with C code Pin
Vaclav_18-Apr-20 7:47
Vaclav_18-Apr-20 7:47 
AnswerRe: Math problem with C code Pin
k505418-Apr-20 8:00
mvek505418-Apr-20 8:00 
GeneralSOLVED Re: Math problem with C code Pin
Vaclav_18-Apr-20 9:16
Vaclav_18-Apr-20 9:16 
QuestionRe: Math problem with C code Pin
Richard MacCutchan18-Apr-20 8:02
mveRichard MacCutchan18-Apr-20 8:02 
QuestionPass a struct as a function parameter or just use it as a global variable? Pin
Vaclav_18-Apr-20 6:23
Vaclav_18-Apr-20 6:23 
AnswerRe: Pass a struct as a function parameter or just use it as a global variable? Pin
k505418-Apr-20 7:17
mvek505418-Apr-20 7:17 
GeneralRe: Pass a struct as a function parameter or just use it as a global variable? Pin
Vaclav_18-Apr-20 7:30
Vaclav_18-Apr-20 7:30 
Questioncomputational cost of math functions Pin
Calin Negru17-Apr-20 6:06
Calin Negru17-Apr-20 6:06 
AnswerRe: computational cost of math functions Pin
OriginalGriff17-Apr-20 6:10
mvaOriginalGriff17-Apr-20 6:10 

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.