what's the difference when declare a struct with typedef or NO
typedef?
=============== =============== ==
typedef struct {
.... etc
} SetupRecord;
=============== =============== ==
struct {
.... etc
} SetupRecord;
typedef?
=============== =============== ==
typedef struct {
.... etc
} SetupRecord;
=============== =============== ==
struct {
.... etc
} SetupRecord;
Comment