/* * recremote.h * * Web frontend to control recording with ALSA * * Header file * * Author: Dario Rodriguez dario@softhome.net * This program is licensed under the terms of the Affero GPL v1+ */ #ifndef RECREMOTE_H #define RECREMOTE_H #include "socklib.h" #include "webkernel.h" #include "rec_config.h" typedef struct recremote { sselect *ssel; wk *web; recconfig *config; } recremote; #endif