mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-22 10:49:02 +00:00
16 lines
367 B
C
16 lines
367 B
C
#ifndef __LIBRETRODB_QUERY_H__
|
|
#define __LIBRETRODB_QUERY_H__
|
|
|
|
#include "libretrodb.h"
|
|
#include "rmsgpack_dom.h"
|
|
|
|
typedef struct libretrodb_query libretrodb_query_t;
|
|
|
|
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
|