aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/cherry.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/cherry.c b/src/cherry.c
index a689fac..88a4e0b 100644
--- a/src/cherry.c
+++ b/src/cherry.c
@@ -27,15 +27,6 @@
#include <stdlib.h>
#include <string.h>
-CherryApplication *cherry_application_new(const char *name)
-{
- CherryApplication *application =
- (CherryApplication *) malloc(sizeof(CherryApplication));
- application->name = strdup(name);
-
- return application;
-}
-
int cherry_application_run()
{
#if defined(WIN32) || defined(_WIN64)
@@ -47,4 +38,5 @@ int cherry_application_run()
return msg.wParam;
#endif
+ return 0;
}