-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#164 add LayoutDelta to encapsulate changes in flight
- Loading branch information
1 parent
0ae9f29
commit 861ad68
Showing
7 changed files
with
90 additions
and
83 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
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,13 +1,16 @@ | ||
#include <stddef.h> | ||
|
||
#include "global.h" | ||
|
||
struct Displ *displ = NULL; | ||
struct Lid *lid = NULL; | ||
struct Cfg *cfg = NULL; | ||
|
||
struct SList *cfg_file_paths = NULL; | ||
|
||
struct Head *head_changing_mode = NULL; | ||
struct Head *head_changing_adaptive_sync = NULL; | ||
|
||
char *deltas_brief = NULL; | ||
struct LayoutDelta layout_delta = { | ||
.head_mode = NULL, | ||
.head_adaptive_sync = NULL, | ||
.brief = NULL, | ||
}; | ||
|
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
Oops, something went wrong.