|
|
User login
Feeds |
Call back functions
|
|||||
| Thu, 2004-10-28 11:14 | |
Forum posts: 1379
Essentially, a static/global function that returns a TInt and takes a TAny*
didster
Forum posts: 18
Forum posts: 1379
Basically, any global/static function can be a callback - or any memeber function can be with some nasty C++ to call memebers via function pointers which is why members are usually avoided as call backs.
You pass a pointer to a function to some other function, then later it calls you back - and to do that, it must know what parameters you are expecting - which is what the word callback is used to describe.
I haven't explained that too well, but I hope you get me.
didster
Forum posts: 18
I was parallely studying the stuff and was looking at some examples. With your input my concepts have got more clearer.
Thanks for your inputs . Will get in touch with you if i require more information.
Again thanks for your time