comparison include/sys/x11/settings.h @ 364:99c961c91809

core: refactor out byte stream into its own file easy dubs
author Paper <paper@paper.us.eu.org>
date Tue, 16 Jul 2024 21:15:59 -0400
parents c844f8bb87ce
children
comparison
equal deleted inserted replaced
363:f10507d8f686 364:99c961c91809
15 TypeRgba = 2, 15 TypeRgba = 2,
16 }; 16 };
17 17
18 /* could technically be a union */ 18 /* could technically be a union */
19 struct Data { 19 struct Data {
20 std::uint32_t integer; 20 std::int32_t integer;
21 std::string string; 21 std::string string;
22 struct { 22 struct {
23 std::uint16_t red, green, blue, alpha; 23 std::uint16_t red, green, blue, alpha;
24 } rgba; 24 } rgba;
25 }; 25 };