Zrythm
a highly automated and intuitive digital audio workstation
Loading...
Searching...
No Matches
engine_dummy.h
1// SPDX-FileCopyrightText: © 2019 Alexandros Theodotou <alex@zrythm.org>
2// SPDX-License-Identifier: LicenseRef-ZrythmLicense
3
4#ifndef __AUDIO_ENGINE_DUMMY_H__
5#define __AUDIO_ENGINE_DUMMY_H__
6
7#include <stdbool.h>
8
9typedef struct AudioEngine AudioEngine;
10
14int
15engine_dummy_setup (AudioEngine * self);
16
17int
18engine_dummy_process (AudioEngine * self);
19
23int
24engine_dummy_midi_setup (AudioEngine * self);
25
26int
27engine_dummy_activate (AudioEngine * self, bool activate);
28
29void
30engine_dummy_tear_down (AudioEngine * self);
31
32#endif
The audio engine.
Definition engine.h:358