From 0a31469246ffe8cffd381a2b7a5469394c33f812 Mon Sep 17 00:00:00 2001 From: Maschell Date: Sun, 4 Feb 2018 16:37:47 +0100 Subject: [PATCH] [WUPS] rename the structs to be comaptible to C++ --- wups_include/wups.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wups_include/wups.h b/wups_include/wups.h index 61ef987..a7407c9 100644 --- a/wups_include/wups.h +++ b/wups_include/wups.h @@ -50,11 +50,11 @@ typedef struct wups_loader_entry_t { const char *name; const wups_loader_library_type_t library; const void *target; - } function; + } _function; struct { const char *name; const void *target; - } export; + } _export; } data; } wups_loader_entry_t;