summaryrefslogtreecommitdiff
path: root/src/recording.c
blob: 459b1f78cbc2cf4c5cc875456bceb99145edab27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#if defined(__OpenBSD__)
#include "recording.h"
#include "common.h"

const char *display_recording_audio() {
  return run_command_s("sysctl -n kern.audio.record");
}

const char *display_recording_video() {
  return run_command_s("sysctl -n kern.video.record");
}
#endif