/* MyCLI.c ******************************************************************
*
*	MyCLI -	Opens a simple CLI window on a custom screen if
*		the OpenWindow() function has been patched. If
*		if isn't around the window will appear on the
*		standard workbench screen.
*
****************************************************************************/

#include <libraries/dosextens.h>

void _cli_parse(){}
void _wb_parse(){}

main()
{
	register long CLI;

	if(CLI = Open("CON:0/11/640/189/MyCLI sample window",MODE_OLDFILE))
	{
		Execute("",CLI,NULL);
		Close(CLI);
	}
}
