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

23 lines
509 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. */
class LoadingWindow;
2002-12-13 08:33:25 +00:00
class RageSoundDriver;
LoadingWindow *MakeLoadingWindow();
2002-12-13 08:33:25 +00:00
RageSoundDriver *MakeRageSoundDriver(CString drivers);
/* Define the default list of sound drivers for each arch. */
#if defined(WIN32)
#define DEFAULT_SOUND_DRIVER_LIST "DirectSound,DirectSound-sw"
#endif
#endif
/*
* Copyright (c) 2002 by the person(s) listed below. All rights reserved.
*
* Glenn Maynard
*/