mirror of
https://github.com/libretro/RetroArch.git
synced 2024-12-01 04:00:32 +00:00
24 lines
436 B
C
24 lines
436 B
C
#ifndef __LIBRETRODB_QUERY_H__
|
|
#define __LIBRETRODB_QUERY_H__
|
|
|
|
#include "libretrodb.h"
|
|
#include "rmsgpack_dom.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
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);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|