Remove unused settings defines.

This commit is contained in:
Maschell 2018-07-14 12:05:42 +02:00
parent 5b1a7cd28a
commit e66a61e107
4 changed files with 0 additions and 45 deletions

View File

@ -20,7 +20,6 @@
#include "common/common.h"
#include "CSettings.h"
#include "SettingsEnums.h"
#include <fs/CFile.hpp>
#include <fs/FSUtils.h>
#include <utils/StringTools.h>

View File

@ -23,7 +23,6 @@
#include <stdio.h>
#include <dynamic_libs/os_types.h>
#include <vector>
#include "SettingsEnums.h"
class CSettings {
public:

View File

@ -1,34 +0,0 @@
/****************************************************************************
* Copyright (C) 2015 Dimok
*
* Modified by Maschell, 2018 for WiiU plugin system loader
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
****************************************************************************/
#ifndef __SETTINGS_DEFS_
#define __SETTINGS_DEFS_
typedef struct {
int32_t value;
const char *name;
} ValueString;
typedef struct {
const char *name;
const ValueString *valueStrings;
int32_t type;
int32_t index;
} SettingType;
#endif // __SETTINGS_DEFS_

View File

@ -1,9 +0,0 @@
#ifndef SETTINGS_ENUMS_H_
#define SETTINGS_ENUMS_H_
enum eOnOff {
SETTING_OFF,
SETTING_ON
};
#endif // SETTINGS_ENUMS_H_