Search:

Type: Posts; User: iMalc

Search: Search took 0.07 seconds.

  1. Replies
    5
    Views
    6,535

    I would not use a linked-list of function...

    I would not use a linked-list of function pointers. An Array of function pointers might be best. And if in fact you are just emmulating OOP then I'd suggest doing it the C++ way where you know the...
  2. Replies
    5
    Views
    6,535

    This should suffice as a generic function pointer...

    This should suffice as a generic function pointer if that's what you are asking.
    typedef void (*voidFunc)(void);
    Of course if you want to store a function pointer to something with a different...
Results 1 to 2 of 2