function pointers to class functions

Started by
0 comments, last by nextgengamer 21 years, 5 months ago
Hi everyone, Does anyone know the correct syntax to have a function pointer to a class''s function? Or if that is even possible. This is what I have: void (*pf)(void*); void Game::LoadBar(void *pData); pf = LoadBar; but I get the error, cannot convert from void (__thiscall Game::*)(void *) to void (__cdecl *)(void *) if anyone could help I would appreciate it. Thanks Nextgengamer www.celestialwake.com
Advertisement
Nevermind, I found a site online.

http://www.glenmccl.com/ptr_cmp.htm
If anyone else was intrested.

Thanks for looking here though.

Nextgengamer

This topic is closed to new replies.

Advertisement