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