diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/platform.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/platform.h b/src/platform.h index ec16197..cfdb1b7 100644 --- a/src/platform.h +++ b/src/platform.h @@ -13,6 +13,7 @@ PUGL_BEGIN_DECLS /// Allocate and initialise world internals (implemented once per platform) +PUGL_MALLOC_FUNC PuglWorldInternals* puglInitWorldInternals(PuglWorldType type, PuglWorldFlags flags); @@ -21,6 +22,7 @@ void puglFreeWorldInternals(PuglWorld* world); /// Allocate and initialise view internals (implemented once per platform) +PUGL_MALLOC_FUNC PuglInternals* puglInitViewInternals(PuglWorld* world); |