diff options
Diffstat (limited to 'utils/winmm_drv/config/regconfig.h')
-rw-r--r-- | utils/winmm_drv/config/regconfig.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/utils/winmm_drv/config/regconfig.h b/utils/winmm_drv/config/regconfig.h index f854d1b..2dac28a 100644 --- a/utils/winmm_drv/config/regconfig.h +++ b/utils/winmm_drv/config/regconfig.h @@ -25,8 +25,13 @@ typedef struct DriverSettings_t BOOL flagFullBrightness; int volumeModel; + int chanAlloc; int numChips; int num4ops; + + UINT outputDevice; + + UINT gain100; } DriverSettings; extern const WCHAR g_adlSignalMemory[]; @@ -35,9 +40,13 @@ extern void setupDefault(DriverSettings *setup); extern void loadSetup(DriverSettings *setup); extern void saveSetup(DriverSettings *setup); +extern void saveGain(DriverSettings *setup); +extern void getGain(DriverSettings *setup); + #define DRV_SIGNAL_RELOAD_SETUP 1 #define DRV_SIGNAL_RESET_SYNTH 2 +#define DRV_SIGNAL_UPDATE_GAIN 3 // Client /** |