Fix headers
This commit is contained in:
parent
9601ddacad
commit
3c1aeebb1e
|
@ -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"
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue