[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [MiNT] Christmas release ?? :-)



On Tue, 2010-12-14 at 22:02 +0100, Helmut Karlowski wrote:
> Am 14.12.2010, 19:47 Uhr, schrieb Peter Slegg <p.slegg@scubadivers.co.uk>:
> 
> > I wonder if it could be related to using shading ?
> 
> That's why I said without img.
> 
> I think I just reproduced it: I topped an app using taskbar and the  
> toswin-console-window and a thing-window are both top (see screenshot).
> 
> What does taskbar do?

Taskbar tops an app using this code:

case APPL_SHOW:
	if (aes.aes == XaAES && app_type(apid) == APP_ACCESSORY)
	{
		int msg[8];

		msg[0] = AC_OPEN;
		msg[1] = get_my_apid();
		msg[4] = apid;

		return appl_write(apid, (int)sizeof(msg), msg);
	}
	else
		return appl_control(apid, APC_TOP, &i);

As you can see there is a workaround for a problem in XaAES - APC_TOP
didn't (still does?) doesn't open a closed accessory while N.AES (which
defined appl_control()) does.

Jo Even