2002-11-17 08:20:34 +00:00
|
|
|
/*
|
|
|
|
|
* This file provides functions to create driver objects.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "../stdafx.h"
|
|
|
|
|
|
|
|
|
|
#include "arch.h"
|
|
|
|
|
|
|
|
|
|
/* Load default drivers. */
|
2002-11-18 21:37:58 +00:00
|
|
|
#include "arch_default.h"
|
2002-11-17 08:20:34 +00:00
|
|
|
|
|
|
|
|
/* Override them with arch-specific drivers, as available. */
|
|
|
|
|
#if defined(WIN32)
|
2002-11-18 21:37:58 +00:00
|
|
|
#include "arch_Win32.h"
|
2002-11-17 08:20:34 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
LoadingWindow *MakeLoadingWindow() { return new ARCH_LOADING_WINDOW; }
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2002 by the person(s) listed below. All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* Glenn Maynard
|
|
|
|
|
*/
|