internal static extern ErrorCode windower_text_set_weight(SafeTextHandle text_handle, FontWeight weight);
internal static extern ErrorCode windower_text_show_background(SafeTextHandle text_handle);
internal static extern ErrorCode windower_text_set_style(SafeTextHandle text_handle, FontStyles style);
internal static extern ErrorCode windower_text_set_text(SafeTextHandle text_handle, byte[] text);
internal static extern ErrorCode windower_text_set_location(SafeTextHandle text_handle, int x, int y);
internal static extern ErrorCode windower_text_set_padding(SafeTextHandle text_handle, float pixels);
internal static extern ErrorCode windower_text_set_foreground(SafeTextHandle text_handle, byte r, byte g, byte b, byte a);
internal static extern ErrorCode windower_text_set_font(SafeTextHandle text_handle, byte[] typeface, float size);
internal static extern ErrorCode windower_text_set_alignment(SafeTextHandle text_handle, TextAlignment alignment);
internal static extern ErrorCode windower_text_hide(SafeTextHandle text_handle);
internal static extern ErrorCode windower_text_create(SafeInstanceHandle handle, out SafeTextHandle result, byte[] name);