Click here to Skip to main content
15,791,771 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
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 
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 
I'm not certain what you're asking here.

Inside OpenGL_Stencil, the name of the parameter that was passed in (a function) is Stencil. If you're talking about the int parameter for Stencil, OpenGL_Stencil has to provide that itself. It isn't the parameter associated with Stencil, because that only describes Stencil's function signature and could actually be left out, the same as in a function declaration:
void OpenGL_Stencil(void (*Stencil)(int))
If OpenGL_Stencil doesn't know what value to pass to Stencil, you could provide it like this:
void OpenGL_Stencil(void (*Stencil)(int), int value)
after which you can invoke
Stencil(value)

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 
GeneralRe: computational cost of math functions Pin
Calin Negru17-Apr-20 7:58
Calin Negru17-Apr-20 7:58 
GeneralRe: computational cost of math functions Pin
leon de boer17-Apr-20 8:04
leon de boer17-Apr-20 8:04 

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.