22 lines
657 B
C
22 lines
657 B
C
#ifndef SMPACKAGE_UTIL_H
|
|
#define SMPACKAGE_UTIL_H
|
|
|
|
#include "RageUtil.h"
|
|
#include "../ProductInfo.h"
|
|
|
|
static const CString STEPMANIA_INI = "Save\\" + CString(PRODUCT_NAME) + ".ini";
|
|
|
|
void WriteStepManiaInstallDirs( const CStringArray& asInstallDirsToWrite );
|
|
void GetStepManiaInstallDirs( CStringArray& asInstallDirsOut );
|
|
void AddStepManiaInstallDir( CString sNewInstallDir );
|
|
void SetDefaultInstallDir( int iInstallDirIndex );
|
|
void SetDefaultInstallDir( CString sInstallDir );
|
|
|
|
bool GetPref( CString name, bool &val );
|
|
bool SetPref( CString name, bool val );
|
|
|
|
CString GetPackageDirectory(CString path);
|
|
bool IsValidPackageDirectory(CString path);
|
|
|
|
#endif
|