1 #ifndef TimeZoneVariant_D_H 2 #define TimeZoneVariant_D_H 3 4 #include <stdio.h> 5 #include <stdint.h> 6 #include <stddef.h> 7 #include <stdbool.h> 8 #include "diplomat_runtime.h" 9 10 11 12 13 14 typedef enum TimeZoneVariant { 15 TimeZoneVariant_Standard = 0, 16 TimeZoneVariant_Daylight = 1, 17 } TimeZoneVariant; 18 19 typedef struct TimeZoneVariant_option {union { TimeZoneVariant ok; }; bool is_ok; } TimeZoneVariant_option; 20 21 22 23 #endif // TimeZoneVariant_D_H 24