Files
itgmania212121/stepmania/src/arch/arch.h
T

34 lines
807 B
C++
Raw Normal View History

#ifndef ARCH_H
#define ARCH_H
/* Include this file if you need to create an instance of a driver object. */
2002-12-16 02:09:08 +00:00
class ErrorDialog;
class LoadingWindow;
2002-12-13 08:33:25 +00:00
class RageSoundDriver;
class ArchHooks;
2003-02-16 02:25:22 +00:00
class InputHandler;
2002-12-16 02:09:08 +00:00
ErrorDialog *MakeErrorDialog();
LoadingWindow *MakeLoadingWindow();
ArchHooks *MakeArchHooks();
2002-12-13 08:33:25 +00:00
2003-02-16 02:25:22 +00:00
void MakeInputHandlers(vector<InputHandler *> &Add);
RageSoundDriver *MakeRageSoundDriver(CString drivers);
2002-12-13 08:33:25 +00:00
/* Define the default list of sound drivers for each arch. */
#if defined(LINUX)
#define DEFAULT_SOUND_DRIVER_LIST "ALSA9,Null"
#elif defined(WIN32)
#define DEFAULT_SOUND_DRIVER_LIST "DirectSound,DirectSound-sw,WaveOut"
#else
#define DEFAULT_SOUND_DRIVER_LIST "Null"
2002-12-13 08:33:25 +00:00
#endif
#endif
/*
* Copyright (c) 2002-2003 by the person(s) listed below. All rights reserved.
*
* Glenn Maynard
*/