mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-01-07 03:58:09 +00:00
34 lines
847 B
C
34 lines
847 B
C
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: config.h
|
|
// Purpose: wxConfig base header
|
|
// Author: Julian Smart
|
|
// Modified by:
|
|
// Created:
|
|
// Copyright: (c) Julian Smart
|
|
// RCS-ID: $Id: config.h 60524 2009-05-05 22:51:44Z PC $
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_CONFIG_H_BASE_
|
|
#define _WX_CONFIG_H_BASE_
|
|
|
|
#include "wx/confbase.h"
|
|
|
|
#if wxUSE_CONFIG
|
|
|
|
#if defined(__WXMSW__) && wxUSE_CONFIG_NATIVE
|
|
# ifdef __WIN32__
|
|
# include "wx/msw/regconf.h"
|
|
# else
|
|
# include "wx/msw/iniconf.h"
|
|
# endif
|
|
#elif defined(__WXPALMOS__) && wxUSE_CONFIG_NATIVE
|
|
# include "wx/palmos/prefconf.h"
|
|
#else
|
|
# include "wx/fileconf.h"
|
|
#endif
|
|
|
|
#endif // wxUSE_CONFIG
|
|
|
|
#endif // _WX_CONFIG_H_BASE_
|