1 #ifndef DisplayNamesStyle_D_H 2 #define DisplayNamesStyle_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 DisplayNamesStyle { 15 DisplayNamesStyle_Narrow = 0, 16 DisplayNamesStyle_Short = 1, 17 DisplayNamesStyle_Long = 2, 18 DisplayNamesStyle_Menu = 3, 19 } DisplayNamesStyle; 20 21 typedef struct DisplayNamesStyle_option {union { DisplayNamesStyle ok; }; bool is_ok; } DisplayNamesStyle_option; 22 23 24 25 #endif // DisplayNamesStyle_D_H 26