diff options
author | David Robillard <d@drobilla.net> | 2020-12-15 21:59:34 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-12-15 21:59:34 +0100 |
commit | f1561e63910f84c8b1205076e25aeb3277178141 (patch) | |
tree | 1e522a5de409e745aed0e21cebe2fd12e8b194db /src | |
parent | 06dbd430d41e964b1571906065cfe346e79f4f9e (diff) | |
download | suil-f1561e63910f84c8b1205076e25aeb3277178141.tar.gz suil-f1561e63910f84c8b1205076e25aeb3277178141.tar.bz2 suil-f1561e63910f84c8b1205076e25aeb3277178141.zip |
Avoid use of reserved identifiers
Diffstat (limited to 'src')
-rw-r--r-- | src/suil_internal.h | 8 |
1 files changed, 4 insertions, 4 deletions
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; |