RetroArch/input/input_remote.h

51 lines
1.4 KiB
C
Raw Normal View History

2015-11-26 04:40:11 +00:00
/* RetroArch - A frontend for libretro.
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
2017-01-22 12:40:32 +00:00
* Copyright (C) 2011-2017 - Daniel De Matteis
*
2015-11-26 04:40:11 +00:00
* 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.
*
* 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.
*
* You should have received a copy of the GNU General Public License along with RetroArch.
* If not, see <http://www.gnu.org/licenses/>.
*/
2016-05-09 05:19:18 +00:00
#ifndef INPUT_REMOTE_H__
#define INPUT_REMOTE_H__
2015-11-26 04:40:11 +00:00
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdint.h>
2016-06-03 04:02:49 +00:00
2015-11-26 04:40:11 +00:00
#include <boolean.h>
2016-06-03 04:02:49 +00:00
#include <retro_common_api.h>
2015-11-26 04:40:11 +00:00
2016-06-03 04:02:49 +00:00
RETRO_BEGIN_DECLS
2015-11-26 04:40:11 +00:00
2016-05-09 05:19:18 +00:00
typedef struct input_remote input_remote_t;
2015-11-26 04:40:11 +00:00
2017-01-17 18:43:19 +00:00
input_remote_t *input_remote_new(uint16_t port, unsigned max_users);
2015-11-26 04:40:11 +00:00
2017-01-17 18:43:19 +00:00
void input_remote_free(input_remote_t *handle, unsigned max_users);
2015-11-26 04:40:11 +00:00
2017-01-17 18:43:19 +00:00
void input_remote_poll(input_remote_t *handle, unsigned max_users);
2015-11-26 04:40:11 +00:00
bool input_remote_key_pressed(int key, unsigned port);
2015-11-26 04:40:11 +00:00
2016-05-09 05:19:18 +00:00
void input_remote_state(
int16_t *ret,
unsigned port,
unsigned device,
unsigned idx,
unsigned id);
2015-11-26 04:40:11 +00:00
2016-06-03 04:02:49 +00:00
RETRO_END_DECLS
2015-11-26 04:40:11 +00:00
#endif