Return to previous page | Return to menu | Go to next page
Structure
Work area management
typedef struct work {
struct work *next ;
Uint8 user[WORK_SIZE - sizeof(struct work *)] ;
} WORK ;
next Pointer to the next work area user [] Free area that users can use in WORK
Represents the structure of the work area that can be used in the event.
The member “user” is obtained by subtracting the size (4 bytes) of the member “next” from the WORK size (WORK_SIZE = 64 bytes) and becomes 60 bytes.
For details, refer to Programmer's Tutorial “Chapter 10: Event Control”.
Reference: Chapter 10 Event Control
WORK