mirror of
https://github.com/libretro/RetroArch
synced 2025-02-06 18:40:49 +00:00
Fix CXX_BUILD
This commit is contained in:
parent
4ca6c2398c
commit
adb2942e5c
@ -21,7 +21,6 @@
|
|||||||
#include "../drivers/gl_common.h"
|
#include "../drivers/gl_common.h"
|
||||||
|
|
||||||
#include <wayland-client.h>
|
#include <wayland-client.h>
|
||||||
#include <wayland-client-protocol.h>
|
|
||||||
#include <wayland-egl.h>
|
#include <wayland-egl.h>
|
||||||
|
|
||||||
#include <EGL/egl.h>
|
#include <EGL/egl.h>
|
||||||
|
@ -24,20 +24,20 @@ struct rmsgpack_dom_value {
|
|||||||
union {
|
union {
|
||||||
uint64_t uint_;
|
uint64_t uint_;
|
||||||
int64_t int_;
|
int64_t int_;
|
||||||
struct string_t {
|
struct {
|
||||||
uint32_t len;
|
uint32_t len;
|
||||||
char * buff;
|
char * buff;
|
||||||
} string;
|
} string;
|
||||||
struct binary_t {
|
struct {
|
||||||
uint32_t len;
|
uint32_t len;
|
||||||
char * buff;
|
char * buff;
|
||||||
} binary;
|
} binary;
|
||||||
int bool_;
|
int bool_;
|
||||||
struct map_t {
|
struct {
|
||||||
uint32_t len;
|
uint32_t len;
|
||||||
struct rmsgpack_dom_pair * items;
|
struct rmsgpack_dom_pair * items;
|
||||||
} map;
|
} map;
|
||||||
struct array_t {
|
struct {
|
||||||
uint32_t len;
|
uint32_t len;
|
||||||
struct rmsgpack_dom_value * items;
|
struct rmsgpack_dom_value * items;
|
||||||
} array;
|
} array;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user