#ifndef KRUNCH__H #define KRUNCH__H #include "gui_class.h" #include "lockin.h" void* krunch(void* _arg); // thread entry point class krunch_arg { public: myWindow* topwin; alsa_pcm* pcm; alsa_pcm* otherpcm; snark* setup; int pipefd; krunch_arg(myWindow* const _topwin, alsa_pcm* const _pcm, alsa_pcm* const _otherpcm, snark* const _setup, const int _pipefd) : topwin(_topwin), pcm(_pcm), otherpcm(_otherpcm), setup(_setup), pipefd(_pipefd) {} }; #endif /* KRUNCH__H */