Home > Back-end > C the callback function interface of two questions?
C the callback function interface of two questions?
Time:12-11
Please void * (*) what is the meaning and the void pointer function (*) what's the difference? Void * __cdec1 function is what mean? __cdec1 do??
CodePudding user response:
Please void * (*) what is the meaning and the void pointer function (*) what's the difference?
Both are a function pointer, the first return value is a void *, the return value is the second it ya not return a value
There are three kinds of function call way __cdecl default way __stdcall winAPI functions are this way __fastcall As for the three difference, their online look for