1
0
mirror of https://github.com/libretro/RetroArch synced 2024-07-03 00:38:44 +00:00
RetroArch/libretro-db/query.h

44 lines
1.8 KiB
C
Raw Normal View History

2017-01-22 12:40:32 +00:00
/* Copyright (C) 2010-2017 The RetroArch team
2016-03-21 17:16:05 +00:00
*
* ---------------------------------------------------------------------------------------
* The following license statement only applies to this file (query.h).
* ---------------------------------------------------------------------------------------
*
* 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.
*/
2015-01-23 04:59:47 +00:00
#ifndef __LIBRETRODB_QUERY_H__
#define __LIBRETRODB_QUERY_H__
2015-01-19 21:47:09 +00:00
2016-06-03 05:58:15 +00:00
#include <retro_common_api.h>
2015-01-23 04:59:47 +00:00
#include "libretrodb.h"
2015-09-21 13:31:00 +00:00
#include "rmsgpack_dom.h"
2016-06-03 05:58:15 +00:00
RETRO_BEGIN_DECLS
2015-10-02 15:57:37 +00:00
2015-09-21 13:31:00 +00:00
typedef struct libretrodb_query libretrodb_query_t;
2015-01-19 21:47:09 +00:00
2015-01-23 04:59:47 +00:00
void libretrodb_query_inc_ref(libretrodb_query_t *q);
void libretrodb_query_dec_ref(libretrodb_query_t *q);
2015-09-17 07:33:24 +00:00
int libretrodb_query_filter(libretrodb_query_t *q, struct rmsgpack_dom_value *v);
2015-01-19 21:47:09 +00:00
2016-06-03 05:58:15 +00:00
RETRO_END_DECLS
2015-10-02 15:57:37 +00:00
2015-01-19 21:47:09 +00:00
#endif