gui/ocarina: Convert file to C

Signed-off-by: Anna Schumaker <Anna@OcarinaProject.net>
This commit is contained in:
Anna Schumaker 2016-01-23 09:47:53 -05:00
parent 4dbaf12701
commit 061dbc4575
2 changed files with 1 additions and 3 deletions

View File

@ -4,5 +4,5 @@ Import("env")
env.UsePackage("gtk+-3.0")
env.UsePackage("gmodule-export-2.0");
res = Glob("*.c") + Glob("*.cpp")
res = Glob("*.c")
Return("res")

View File

@ -1,7 +1,6 @@
/*
* Copyright 2014 (c) Anna Schumaker.
*/
extern "C" {
#include <core/core.h>
#include <core/idle.h>
#include <gui/audio.h>
@ -14,7 +13,6 @@ extern "C" {
#include <gui/tempq.h>
#include <gui/view.h>
#include <gui/window.h>
}
#define OCARINA_FLAGS (G_APPLICATION_FLAGS_NONE)