Fix headers

This commit is contained in:
Chris Young 2014-11-08 19:25:53 +00:00
parent 9601ddacad
commit 3c1aeebb1e
3 changed files with 8 additions and 5 deletions

View File

@ -133,6 +133,7 @@
#include "amiga/hotlist.h"
#include "amiga/icon.h"
#include "amiga/launch.h"
#include "amiga/libs.h"
#include "amiga/login.h"
#include "amiga/menu.h"
#include "amiga/misc.h"

View File

@ -16,7 +16,9 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "libs.h"
#include "amiga/libs.h"
#include <proto/exec.h>
void ami_libs_open(void)
{

View File

@ -18,10 +18,10 @@
#ifndef AMIGA_LIBS_H
struct Library *KeymapBase = NULL;
struct KeymapIFace *IKeymap = NULL;
struct Library *ApplicationBase = NULL;
struct ApplicationIFace *IApplication = NULL;
struct Library *KeymapBase;
struct KeymapIFace *IKeymap;
struct Library *ApplicationBase;
struct ApplicationIFace *IApplication;
void ami_libs_open(void);
void ami_libs_close(void);