Mercurial > hg > sv-dependency-builds
view src/portaudio_20140130/bindings/cpp/source/portaudiocpp/CallbackInterface.cxx @ 73:02caadb7509e
Rebuild with --disable-stack-protector for mingw32
author | Chris Cannam |
---|---|
date | Fri, 25 Jan 2019 14:31:07 +0000 |
parents | 7ddb4fc30dac |
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