this might seem trivial to some of u but i'm jus unsure:
i need to use a pointer to a function
void suspend_resume()
i wanted to use a long pointer but the compiler only lets me define the pointer as
void (*lp)()=suspend_resume;
my question is wat data type would this pointer be(long,int)?
and how do i make the pointer global so i could use it in another function in my project?