summaryrefslogtreecommitdiff
path: root/src/audio/include/audio_task.hpp
blob: 79604f33a9c2097a227941f5f8d8e69d0d08bf3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include <memory>

#include "audio_element.hpp"

namespace audio {

struct AudioTaskArgs {
  std::shared_ptr<IAudioElement>& element;
};

void audio_task(void* args);

}  // namespace audio