aboutsummaryrefslogtreecommitdiffstats
path: root/src/stub.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/stub.h')
-rw-r--r--src/stub.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/stub.h b/src/stub.h
index 36d7364..e61085c 100644
--- a/src/stub.h
+++ b/src/stub.h
@@ -24,45 +24,45 @@ PUGL_BEGIN_DECLS
static inline PuglStatus
puglStubConfigure(PuglView* view)
{
- (void)view;
- return PUGL_SUCCESS;
+ (void)view;
+ return PUGL_SUCCESS;
}
static inline PuglStatus
puglStubCreate(PuglView* view)
{
- (void)view;
- return PUGL_SUCCESS;
+ (void)view;
+ return PUGL_SUCCESS;
}
static inline PuglStatus
puglStubDestroy(PuglView* view)
{
- (void)view;
- return PUGL_SUCCESS;
+ (void)view;
+ return PUGL_SUCCESS;
}
static inline PuglStatus
puglStubEnter(PuglView* view, const PuglEventExpose* expose)
{
- (void)view;
- (void)expose;
- return PUGL_SUCCESS;
+ (void)view;
+ (void)expose;
+ return PUGL_SUCCESS;
}
static inline PuglStatus
puglStubLeave(PuglView* view, const PuglEventExpose* expose)
{
- (void)view;
- (void)expose;
- return PUGL_SUCCESS;
+ (void)view;
+ (void)expose;
+ return PUGL_SUCCESS;
}
static inline void*
puglStubGetContext(PuglView* view)
{
- (void)view;
- return NULL;
+ (void)view;
+ return NULL;
}
PUGL_END_DECLS