-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: populate session list with real data
- This is the first UI component that is driven by real data from Brewers friend - There is still some stuff to be worked out like dragging the window but it's a good milestone
- Loading branch information
1 parent
0a4bf2d
commit 8480be6
Showing
13 changed files
with
252 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,4 @@ | ||
typedef struct BrewSessionReference | ||
{ | ||
Str255 id; | ||
Str255 batch_code; | ||
Str255 name; | ||
} BrewSessionReference; | ||
struct Sequence; | ||
|
||
void Ping(); | ||
void FetchBrewSessionReferences(Handle *sessionReferences); | ||
void FetchBrewSessionReferences(Sequence **outSessionReferences); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
typedef struct BrewSessionReference | ||
{ | ||
Str255 id; | ||
Str255 batch_code; | ||
Str255 name; | ||
} BrewSessionReference; | ||
|
||
typedef struct Sequence | ||
{ | ||
unsigned short size; | ||
Handle *elements; | ||
} Sequence; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
unsigned long GetLongFromBuffer(char *buffer, int offset); | ||
unsigned short GetShortFromBuffer(char *buffer, int offset); | ||
unsigned char GetCharFromBuffer(char *buffer, int offset); | ||
void Panic(Str255 message); | ||
void ShowAlert(Str255 message); | ||
void CShowAlert(char *message); | ||
void CShowAlert(char *message); |
Oops, something went wrong.