From f1561e63910f84c8b1205076e25aeb3277178141 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 15 Dec 2020 21:59:34 +0100 Subject: Avoid use of reserved identifiers --- src/suil_internal.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/suil_internal.h b/src/suil_internal.h index bc67bf3..719471f 100644 --- a/src/suil_internal.h +++ b/src/suil_internal.h @@ -49,14 +49,14 @@ struct SuilHostImpl { char** argv; }; -struct _SuilWrapper; +struct SuilWrapperImpl; -typedef void (*SuilWrapperFreeFunc)(struct _SuilWrapper*); +typedef void (*SuilWrapperFreeFunc)(struct SuilWrapperImpl*); -typedef int (*SuilWrapperWrapFunc)(struct _SuilWrapper* wrapper, +typedef int (*SuilWrapperWrapFunc)(struct SuilWrapperImpl* wrapper, SuilInstance* instance); -typedef struct _SuilWrapper { +typedef struct SuilWrapperImpl { SuilWrapperWrapFunc wrap; SuilWrapperFreeFunc free; void* lib; -- cgit v1.2.1