mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-24 08:30:16 +00:00
14 lines
295 B
C
14 lines
295 B
C
#ifndef __LIBRETRODB_QUERY_H__
|
|
#define __LIBRETRODB_QUERY_H__
|
|
|
|
#include "libretrodb.h"
|
|
|
|
void libretrodb_query_inc_ref(libretrodb_query_t *q);
|
|
|
|
void libretrodb_query_dec_ref(libretrodb_query_t *q);
|
|
|
|
int libretrodb_query_filter(libretrodb_query_t *q,
|
|
struct rmsgpack_dom_value * v);
|
|
|
|
#endif
|