File: sets.h

package info (click to toggle)
ocp 1%3A0.1.21-5
  • links: PTS
  • area: main
  • in suites: buster
  • size: 5,528 kB
  • sloc: ansic: 91,461; cpp: 9,729; sh: 3,119; makefile: 2,493
file content (21 lines) | stat: -rw-r--r-- 277 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef __SETS_H
#define __SETS_H

struct settings
{
  int16_t amp;
  int16_t speed;
  int16_t pitch;
  int16_t pan;
  int16_t bal;
  int16_t vol;
  int16_t srnd;
  int16_t filter;
  uint16_t useecho;
  int16_t reverb;
  int16_t chorus;
};

extern struct settings set;

#endif