Work with a code fragment right now when form functions are declared:
typedef PACKED(struct) {
now ... PACKED is a macro on our part. What does this syntax mean? I do not understand the use of brackets. This is not a compilation, so I assume this is probably not true. Is this close to some other valid syntax, or is it just absurd?
If this is almost acceptable ... how should this code actually be written and what should it mean?
The only form of typedef structure I've seen and can find on the Internet is:
typedef struct {
Solved: all I needed to understand was that struct is a parameter in macro function. Thanks!
source share