Files
vasilito facf0c92e0 feat: track all source trees in git — full fork offline-first model
Red Bear OS is a full fork. All sources must be available from git clone
with zero network access. Removed gitignore rules that excluded fetched
source trees under recipes/*/source/, local/recipes/kde/*/source/,
local/recipes/qt/*/source/, and vendor source trees.

Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded.

127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt
frameworks, mesa, wayland, DRM drivers, and every other recipe source.
2026-05-14 10:55:53 +01:00

75 lines
2.2 KiB
C

/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
/* Field layout of superclass. */
#include "ostream.priv.h"
/* Field layout of term_ostream class. */
struct term_ostream_representation
{
struct ostream_representation base;
int volatile fd;
#if HAVE_WINDOWS_CONSOLES
HANDLE volatile handle;
bool volatile is_windows_console;
#endif
char *filename;
ttyctl_t tty_control;
int max_colors;
int no_color_video;
char * volatile set_a_foreground;
char * volatile set_foreground;
char * volatile set_a_background;
char * volatile set_background;
char *orig_pair;
char * volatile enter_bold_mode;
char * volatile enter_italics_mode;
char *exit_italics_mode;
char * volatile enter_underline_mode;
char *exit_underline_mode;
char *exit_attribute_mode;
bool volatile supports_foreground;
bool volatile supports_background;
colormodel_t volatile colormodel;
bool volatile supports_weight;
bool volatile supports_posture;
bool volatile supports_underline;
bool volatile supports_hyperlink;
const char * volatile restore_colors;
const char * volatile restore_weight;
const char * volatile restore_posture;
const char * volatile restore_underline;
const char * volatile restore_hyperlink;
struct term_style_control_data control_data;
uint32_t hostname_hash;
uint64_t start_time;
uint32_t id_serial;
hyperlink_t **hyperlinks_array;
size_t hyperlinks_count;
size_t hyperlinks_allocated;
#if HAVE_WINDOWS_CONSOLES
WORD volatile default_console_attributes;
WORD volatile current_console_attributes;
#endif
attributes_t default_attr;
attributes_t volatile active_attr;
term_color_t volatile active_attr_color;
term_color_t volatile active_attr_bgcolor;
hyperlink_t *volatile active_attr_hyperlink;
char *buffer;
attributes_t *attrbuffer;
size_t buflen;
size_t allocated;
attributes_t curr_attr;
attributes_t simp_attr;
};