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

Re: [MiNT] AES related question: How to keep track if my application



Jo Even Skarstein wrote:

> --------------------------------------------------
> From: m0n0 <ole@monochrom.net>
> Sent: Tuesday, August 24, 2010 12:44 PM
> To: mint <mint@lists.fishpool.fi>
> Subject: Re: [MiNT] AES related question: How to keep track if my
> application
>
> Helmut:
> >> application-control. But I hope you use the improved version with the
> >> pointer instead of 33 parameters on stack?
>
> Where is this documented? I have never heard of it before.

Are you sure?

/* this is our special invention to increase evnt_multi performance */

typedef struct /* Special type for EventMulti */
{
        /* input parameters */
        int     ev_mflags, ev_mbclicks, ev_bmask, ev_mbstate, ev_mm1flags,
                ev_mm1x, ev_mm1y, ev_mm1width, ev_mm1height, ev_mm2flags,
                ev_mm2x, ev_mm2y, ev_mm2width, ev_mm2height, ev_mtlocount,
                ev_mthicount;
        /* output parameters */
        int     ev_mwich, ev_mmox, ev_mmoy, ev_mmobutton, ev_mmokstate,
                ev_mkreturn, ev_mbreturn;
        /* message buffer */
        int     ev_mmgpbuf[8];
} EVENT;

int EvntMulti( EVENT *evnt_struct );


aes.h from pure-c.

-Helmut