Compiler Error C2095 (original) (raw)
'function' : actual parameter has type 'void' : parameter 'number'
The parameter passed to the function is type void
, which is not allowed. Use a pointer to void ( void *
) instead.
The number
indicates which parameter is void
.