Subj : Re: How to get address of CALLBACK function? To : borland.public.cpp.borlandcpp From : maeder Date : Wed Mar 30 2005 11:05 pm "Gasparics, Antal" writes: > The "addressof" operator (&) can not be used here, or at least I can > not find how. I have static member function now, but the following > line can not be compiled: > > waveOutProcAddress = &WaveChannel.waveOutProc; To take the address of a member (static or non-static, data or function), the syntax is &WaveChannel::waveOutProc (not :: rather than .) .