Call back function
-
Hi all, Pls help me... i don't know how to write a call back function. anybody please tel me with any example please or give any suitable links
Dream bigger... Do bigger...Expect smaller aji
-
Hi all, Pls help me... i don't know how to write a call back function. anybody please tel me with any example please or give any suitable links
Dream bigger... Do bigger...Expect smaller aji
-
-
Hi, Can u please help me.. i declared a call back function as
static int CALLBACK CalBckFun( int param );
now please tel me that how can i call this call back function.Dream bigger... Do bigger...Expect smaller aji
see me wrote:
now please tel me that how can i call this call back function.
It sounds as though you need a primer on callbacks.
"Approved Workmen Are Not Ashamed" - 2 Timothy 2:15
"Judge not by the eye but by the heart." - Native American Proverb
-
Hi, Can u please help me.. i declared a call back function as
static int CALLBACK CalBckFun( int param );
now please tel me that how can i call this call back function.Dream bigger... Do bigger...Expect smaller aji
see me wrote:
now please tel me that how can i call this call back function.
It's just a function - call it like normal: int callbackreturn = CalBckFun(0); Usually functions declared with the CALLBACK spec are meant to be called by the OS.