/* MPMorph - Amiga Morphing program */
/* Copyright (C) © 1993  Topicsave Limited */

/* This program is free software; you can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License, or */
/* any later version. */

/* This program is distributed in the hope that it will be useful, */
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the */
/* GNU General Public License for more details. */

/* You should have received a copy of the GNU General Public License */
/* along with this program; if not, write to the Free Software */
/* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */

/* mpaddock@cix.compulink.co.uk */

#include "unix.h"

/* Do whatever is required to open the GUI etc. */
/* return 1 for success */
int
OpenUnixInterface(void) {
	return 1;
}

/* Close the GUI etc. */
/* Called even if OpenUnixInterface() failed */
void
CloseUnixInterface(void) {
}

/* Display an error message */
extern void
UnixError(char *message,char *extra) {
	printf(message,extra);
	printf("\n");
}

/* Display a message */
extern void
AddMessage(char *Message) {
	printf(Message);
	printf("\n");
}

/* Disable GUI */
extern void
DisableWindow(void) {
}
/* Enable GUI */
extern void
EnableWindow(void) {
}

/* Check to quit 0 = quit */
extern int
HandleProgressIDCMP(void) {
	return 1;
}
/* Frame and Line Processes */
extern void
SetMaxFrame(int a) {
	printf("Max frame=%d\n",a);
}
extern void
SetFrame(int a) {
	printf("Frame=%d\n",a);
}
extern void
SetMaxLine(int a) {
	printf("Max Line=%d\n",a);
}
extern void
SetLine(int a) {
	printf("Line=%d\n",a);
}
