Hi All:
Is it possible in a class' member function to start a thread calling
another member function in the same class' .....? .i.e
class A
{
void f1(void*)
{
}
void f2()
{
....
startthead(f1); // i tried _beginthread wont work at least...
....
}
}
Thanks.
D.