summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/suil_internal.h8
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;