S
s88
Hello....
Consider the follows callback function...
typedef void (* CALLBACK) (int);
void some_callback(int percentage){
fprintf(stderr, "%d\%\n", percentage);
}
void function1(CALLBACK callback){
....
callback( parameters...);
....
}
How do I know which function calls the callback function in the
function some_callback(int percentage).
Thanx!!
Consider the follows callback function...
typedef void (* CALLBACK) (int);
void some_callback(int percentage){
fprintf(stderr, "%d\%\n", percentage);
}
void function1(CALLBACK callback){
....
callback( parameters...);
....
}
How do I know which function calls the callback function in the
function some_callback(int percentage).
Thanx!!