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

13 lines
288 B
C
Raw Normal View History

2015-01-23 04:59:47 +00:00
#ifndef __LIBRETRODB_QUERY_H__
#define __LIBRETRODB_QUERY_H__
2015-01-19 21:47:09 +00:00
2015-01-23 04:59:47 +00:00
#include "libretrodb.h"
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
#endif