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

[MiNT] XaAES



I have some question about XaAES functions:

XA_appl_control:
-------------------------------cut-------------------------------
case APC_SYSTEM:         /* #define APC_SYSTEM  2 */
{
  if (cl)
  {
    cl->type = APP_SYSTEM;
  }
  else
    ret = 0;
  break;
}
-------------------------------cut-------------------------------
Where is this mode define? I know only that 0 to 9 is reserved for N.AES.

XA_shel_write:
-------------------------------cut-------------------------------
case SWM_NEWMSG:
{
  if (client)
  {
    client->swm_newmsg |= wisgr;
  }
  pb->intout[0] = 1;
  break;
}
-------------------------------cut-------------------------------
I think this should be "client->swm_newmsg = wisgr;", because at the moment is
it impossible to delete a bit. There is also on way to find out that
NM_INHIBIT_HIDE is supported.

Gerhard