Files
itgmania212121/stepmania/src/smpackage/smpackageUtil.h
T

25 lines
717 B
C
Raw Normal View History

2003-07-22 02:40:23 +00:00
#ifndef SMPACKAGE_UTIL_H
#define SMPACKAGE_UTIL_H
#include "RageUtil.h"
2005-11-10 09:19:48 +00:00
#include "../ProductInfo.h"
static const CString PREFERENCES_INI = "Save\\Preferences.ini";
static const CString KEYMAPS_INI = "Save\\Keymaps.ini";
2003-07-22 02:40:23 +00:00
void WriteStepManiaInstallDirs( const CStringArray& asInstallDirsToWrite );
void GetStepManiaInstallDirs( CStringArray& asInstallDirsOut );
void AddStepManiaInstallDir( CString sNewInstallDir );
void SetDefaultInstallDir( int iInstallDirIndex );
void SetDefaultInstallDir( CString sInstallDir );
2003-07-22 03:07:51 +00:00
bool GetPref( CString name, bool &val );
bool SetPref( CString name, bool val );
CString GetPackageDirectory(CString path);
bool IsValidPackageDirectory(CString path);
2005-11-28 05:24:09 +00:00
void LaunchGame();
2003-07-22 02:40:23 +00:00
#endif