• function pointer
    hi all, do you think i can work around function pointers as following: extern void a(void); extern void b(void); void fptr(void *fp) { if (fp == a) a(); if (fp == b) b(); } void...
  • Function pointers
    Warning: Not directly related with Keil... After the messages on the pointer and function pointer usage, I read the application note 129 and confused on the syntax of calling functions using funct...
  • Function pointers
    Warning: Not directly related with Keil... After the messages on the pointer and function pointer usage, I read the application note 129 and confused on the syntax of calling functions using funct...
  • function pointer
    hi all, do you think i can work around function pointers as following: extern void a(void); extern void b(void); void fptr(void *fp) { if (fp == a) a(); if (fp == b) b(); } void...
  • Failure in sizeof() function while using Member-Function-Pointers
    When using member-function-pointers I noticed that they have a size of 8Bytes each. However when I ask the compiler it says it is only 4Bytes. Having a couple of objects in you program which have member...