RadASM 2.2.1.6 bugtest (2009-03-11)

Started by KetilO, March 11, 2009, 02:38:00 PM

Previous topic - Next topic

KetilO

Hi UtillMasm

Sorry, nothing to do about that. The parser will not recognize it as a label.
However start: ret will work. So just put a space after the colon.

KetilO

Monolith

When working in C, after pressing 'return' inside a procedure (working line after line, with only } at the end) , Radasm looses which procedure it is in not allowing it to recognize locals. For instance:

void _fastcall GetFileName(HWND hw)
{
  OPENFILENAME ofn = {0};
  ofn.lStructSize = sizeof(OPENFILENAME);
  ofn.hwndOwner = hw;                                <-------------------------------------------- Radasm won't recognize ofn as a local.
}

If I just click the up button, then back down, it will rescan an see it as a local again.

KetilO

Thanks Monolith

RadASM 2.2.1.6 has been released.

Get it here:
http://radasm.110mb.com/

KetilO