Mercurial > hg > sv-dependency-builds
view src/portaudio_20161030/bindings/cpp/source/portaudiocpp/CallbackInterface.cxx @ 58:eab3b14ddc95
Further win32 build updates
author | Chris Cannam |
---|---|
date | Mon, 09 Jan 2017 13:51:38 +0000 |
parents | 284acf908dcd |
children |
line wrap: on
line source
#include "portaudiocpp/CallbackInterface.hxx" namespace portaudio { namespace impl { ////// /// Adapts any CallbackInterface object to a C-callable function (ie this function). A /// pointer to the object should be passed as ``userData'' when setting up the callback. ////// int callbackInterfaceToPaCallbackAdapter(const void *inputBuffer, void *outputBuffer, unsigned long numFrames, const PaStreamCallbackTimeInfo *timeInfo, PaStreamCallbackFlags statusFlags, void *userData) { CallbackInterface *cb = static_cast<CallbackInterface *>(userData); return cb->paCallbackFun(inputBuffer, outputBuffer, numFrames, timeInfo, statusFlags); } } // namespace impl } // namespace portaudio