mirror of
https://github.com/vgmstream/vgmstream.git
synced 2024-11-17 11:57:08 +01:00
17 lines
299 B
C
17 lines
299 B
C
|
#ifndef __SETTINGS__
|
||
|
#define __SETTINGS__
|
||
|
|
||
|
typedef struct _SETTINGS
|
||
|
{
|
||
|
int loopcount;
|
||
|
int fadeseconds;
|
||
|
int fadedelayseconds;
|
||
|
} SETTINGS,*PSETTINGS,*LPSETTINGS;
|
||
|
|
||
|
void DefaultSettings(LPSETTINGS pSettings);
|
||
|
int LoadSettings(LPSETTINGS pSettings);
|
||
|
int SaveSettings(LPSETTINGS pSettings);
|
||
|
|
||
|
|
||
|
#endif
|