Search Results

10
votes

What does this error mean: “error: expected specifier-qualifier-list before ‘type_name’”?

The compiler doesn't know that spe_context_ptr_t is a type. Check that the appropriate typedef is in scope when this code is compiled. You may have forgotten to include the appropriate header fil …
0
votes

function pointers callbacks C

Registering a callback means that you are specifying which function should be called when the event of interest occurs. Basically you are setting the function pointer when registering a callback. …
1
vote

C++ Array Shuffle

You declared deck as an array of pointers but you didn't allocate any space for it. If you de-reference it without allocating space you will get a seg-fault. …