Move miscellaneous header over to libretro SDK

This commit is contained in:
twinaphex 2014-10-21 08:39:37 +02:00
parent b1293c1b82
commit 81c5019afb
15 changed files with 35 additions and 30 deletions

View File

@ -16,7 +16,7 @@ include $(CELL_MK_DIR)/sdk.makedef.mk
PPU_LIB_TARGET = librgl_ps3.a
LDDIRS = -L.
INCDIRS = -I. -Ips3/gcmgl/include
INCDIRS = -I. -Ips3/gcmgl/include -Ilibretro-sdk/include
RGL_DIR = ps3/gcmgl/src

View File

@ -23,7 +23,7 @@
#include "../general.h"
#include "../driver.h"
#include "../performance.h"
#include "../miscellaneous.h"
#include <retro_miscellaneous.h>
#include "../gfx/scaler/scaler.h"
#include <stdlib.h>
#include <fcntl.h>

View File

@ -20,7 +20,7 @@
#include <sys/types.h>
#include <string.h>
#include "../miscellaneous.h"
#include <retro_miscellaneous.h>
#include "../file_path.h"
#include "7zip_support.h"

View File

@ -20,7 +20,7 @@
#include <sys/types.h>
#include <string.h>
#include "../miscellaneous.h"
#include <retro_miscellaneous.h>
#include "../file_path.h"
#include "zip_support.h"

View File

@ -31,9 +31,7 @@
#include "audio/dsp_filter.h"
#include "input/overlay.h"
#include "frontend/frontend_context.h"
#ifndef _WIN32
#include "miscellaneous.h"
#endif
#include <retro_miscellaneous.h>
#include "frontend/menu/menu_driver.h"
#include "frontend/menu/backend/menu_backend.h"

View File

@ -22,7 +22,7 @@
#include <errno.h>
#include <compat/strl.h>
#include <compat/posix_string.h>
#include "miscellaneous.h"
#include <retro_miscellaneous.h>
#ifdef __HAIKU__
#include <kernel/image.h>

View File

@ -28,7 +28,7 @@
#include "../../../config.def.h"
#include "../../../file.h"
#include "../../../dynamic.h"
#include "../../../compat/posix_string.h"
#include <compat/posix_string.h>
#include "../../../performance.h"
#include "../../../input/input_common.h"

View File

@ -32,7 +32,7 @@
#include <compat/strl.h>
#include "core_options.h"
#include "core_info.h"
#include "miscellaneous.h"
#include <retro_miscellaneous.h>
#include "gfx/filter.h"
#include "playlist.h"

View File

@ -19,7 +19,7 @@
#include <boolean.h>
#include "../state_tracker.h"
#include "../../conf/config_file.h"
#include "../../miscellaneous.h"
#include <retro_miscellaneous.h>
#ifdef __cplusplus
extern "C" {

2
hash.c
View File

@ -57,7 +57,7 @@
#include <string.h>
#include <stdio.h>
#include "hash.h"
#include "miscellaneous.h"
#include <retro_miscellaneous.h>
#include <retro_endianness.h>
#define LSL32(x, n) ((uint32_t)(x) << (n))

View File

@ -32,9 +32,8 @@
#include <stddef.h>
#include <stdlib.h>
#include <ctype.h>
#ifdef _MSC_VER
#include <compat/msvc.h>
#endif
#include <retro_miscellaneous.h>
char *optarg;
int optind, opterr, optopt;

View File

@ -1,7 +1,7 @@
/* Copyright (C) 2010-2014 The RetroArch team
*
* ---------------------------------------------------------------------------------------
* The following license statement only applies to this file (boolean.h).
* The following license statement only applies to this file (retro_endianness.h).
* ---------------------------------------------------------------------------------------
*
* Permission is hereby granted, free of charge,

View File

@ -1,17 +1,23 @@
/* RetroArch - A frontend for libretro.
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
* Copyright (C) 2011-2014 - Daniel De Matteis
*
* RetroArch 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 Found-
* ation, either version 3 of the License, or (at your option) any later version.
/* Copyright (C) 2010-2014 The RetroArch team
*
* RetroArch 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.
* ---------------------------------------------------------------------------------------
* The following license statement only applies to this file (retro_miscellaneous.h).
* ---------------------------------------------------------------------------------------
*
* You should have received a copy of the GNU General Public License along with RetroArch.
* If not, see <http://www.gnu.org/licenses/>.
* Permission is hereby granted, free of charge,
* to any person obtaining a copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation the rights to
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
* and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
* INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#ifndef __RARCH_MISCELLANEOUS_H
@ -37,7 +43,9 @@
#endif
#include <compat/msvc.h>
#ifdef RARCH_INTERNAL
#include "retroarch_logger.h"
#endif
#include <retro_endianness.h>
#include <limits.h>

View File

@ -18,7 +18,7 @@
#include <stdint.h>
#include "conf/config_file.h"
#include "miscellaneous.h"
#include <retro_miscellaneous.h>
#include "settings_list.h"
#ifdef __cplusplus

View File

@ -17,7 +17,7 @@
#include <stdint.h>
#include "string_list.h"
#include <string.h>
#include "miscellaneous.h"
#include <retro_miscellaneous.h>
#include <compat/strl.h>
#include <compat/posix_string.h>