typedef struct secinfo_t {
struct secinfo_t* next; /* NULL for no next section */
const char* name; /* nul-terminated section name */
void* addr; /* Address of section in memory */
uint32_t size; /* length of section (bytes) */
uint32_t flags; /* flags, see below */
struct secinfo_t* romcopyof; /* this section is a ROM copy of 'romcopyof' */enter code here
/* Future fields go here */
} *secinfo_ptr;
What is "next
" and "romcopyof
" members that are created with type pointer on the struct? My problem which I don't understand is the type of struct for that members is the same I created? Could someone explain me more detailed?