&pureforms
Not much of an update today as I spent the morning prepping for and doing a job interview (which I think went well 🤞). I did, however, rough in a way for us to keep track of all the buttons. What could possibly go wrong?
typedef struct structPrivateButtonList { Button* button; struct structPrivateButtonList* next; } private_ButtonList; // ... void private_addButtonToList(Button* button) { private_ButtonList* newListEnd = (private_ButtonList*) HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(private_ButtonList) ); assert(newListEnd); newListEnd->button = button; newListEnd->next = NULL; if (global_firstButton == NULL) { global_firstButton = newListEnd; } else { private_ButtonList* listEnd = global_firstButton; while (listEnd->next != NULL) { listEnd = listEnd->next; } listEnd->next = newListEnd; } }