1
0
mirror of https://github.com/libretro/RetroArch synced 2024-07-05 09:48:42 +00:00

Move message queue to libretro-sdk

This commit is contained in:
twinaphex 2015-01-11 05:35:47 +01:00
parent def2f6cb96
commit 1463d5e7dc
8 changed files with 26 additions and 22 deletions

View File

@ -104,7 +104,7 @@ OBJ += frontend/frontend.o \
settings_data.o \
dynamic.o \
dynamic_dummy.o \
message_queue.o \
libretro-sdk/queues/message_queue.o \
rewind.o \
gfx/gfx_common.o \
gfx/fonts/bitmapfont.o \

View File

@ -22,7 +22,7 @@
#include <limits.h>
#include <setjmp.h>
#include "driver.h"
#include "message_queue.h"
#include <queues/message_queue.h>
#include "rewind.h"
#include "movie.h"
#include "autosave.h"

View File

@ -555,7 +555,7 @@ FILE
/*============================================================
MESSAGE
============================================================ */
#include "../message_queue.c"
#include "../libretro-sdk/queues/message_queue.c"
/*============================================================
PATCH

View File

@ -1,22 +1,27 @@
/* RetroArch - A frontend for libretro.
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
* Copyright (C) 2011-2015 - 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-2015 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 (boolean.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_MSG_QUEUE_H
#define __RARCH_MSG_QUEUE_H
#ifndef __LIBRETRO_SDK_MSG_QUEUE_H
#define __LIBRETRO_SDK_MSG_QUEUE_H
#include <stddef.h>

View File

@ -17,7 +17,7 @@
#include <stdlib.h>
#include <string.h>
#include <boolean.h>
#include "message_queue.h"
#include <queues/message_queue.h>
#include <compat/posix_string.h>
struct queue_elem

View File

@ -28,7 +28,6 @@
#include "../../gfx/gfx_context.h"
#include "../../settings_data.h"
#include "../../message_queue.h"
#include "../../general.h"
#include "../../gfx/d3d/d3d.h"

View File

@ -23,7 +23,7 @@
#include "general.h"
#include "autosave.h"
#include "dynamic.h"
#include "message_queue.h"
#include <queues/message_queue.h>
#include <stdlib.h>
#include <string.h>

View File

@ -54,4 +54,4 @@
#include "../input/input_common.c"
#include "../input/input_keymaps.c"
#include "../message_queue.c"
#include "../libretro-sdk/queues/message_queue.c"