Add simple infrastructure for arch-dependent code.
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
/*
|
||||
* This file provides functions to create driver objects.
|
||||
*/
|
||||
|
||||
#include "../stdafx.h"
|
||||
|
||||
#include "arch.h"
|
||||
|
||||
/* Load default drivers. */
|
||||
#include "default/arch.h"
|
||||
|
||||
/* Override them with arch-specific drivers, as available. */
|
||||
#if defined(WIN32)
|
||||
#include "Win32/arch.h"
|
||||
#endif
|
||||
|
||||
LoadingWindow *MakeLoadingWindow() { return new ARCH_LOADING_WINDOW; }
|
||||
|
||||
/*
|
||||
* Copyright (c) 2002 by the person(s) listed below. All rights reserved.
|
||||
*
|
||||
* Glenn Maynard
|
||||
*/
|
||||
Reference in New Issue
Block a user