Add header guards
[pcsx_rearmed.git] / plugins / dfsound / spu_config.h
CommitLineData
908e426c 1#ifndef __P_SPU_CONFIG_H__
2#define __P_SPU_CONFIG_H__
3
3154bfab 4// user settings
5
6typedef struct
7{
8 int iVolume;
9 int iXAPitch;
10 int iUseReverb;
11 int iUseInterpolation;
12 int iTempo;
210476c7 13 int idiablofix;
63a4f6b6 14 int iUseThread;
1e0eac23 15 int iUseFixedUpdates; // output fixed number of samples/frame
3bd31caf 16
17 // status
18 int iThreadAvail;
3154bfab 19} SPUConfig;
20
21extern SPUConfig spu_config;
908e426c 22
23#endif /* __P_SPU_CONFIG_H__ */