Hello,
I'm programming some microcontrollers in C.
if possible, I want to point in slickedit as structure a defined name (in C programming)
for exemple:
MyTypedef is a structure and it points an address
typedef struct{
unsigned char lo;
unsigned char hi;
}MyTypedef;
#define MyReg (((MyTypedef *)(0x12345678)))
Normally, I can access following
Myreg->lo=10;
But I want to see structure members after typing "Myreg->".
Slickedit shows for pointer variables but I want to see defined names , is this possible?
Thx in advance.