patch 8.0.1783: cannot use 256 colors in a MS-Windows console
Problem: Cannot use 256 colors in a MS-Windows console.
Solution: Add 256 color support. (Nobuhiro Takasaki, closes #2821)
diff --git a/src/proto/os_win32.pro b/src/proto/os_win32.pro
index 1bed98a..7f45c5c 100644
--- a/src/proto/os_win32.pro
+++ b/src/proto/os_win32.pro
@@ -72,4 +72,5 @@
void control_console_color_rgb(void);
int has_vtp_working(void);
int use_vtp(void);
+int is_term_win32(void);
/* vim: set ft=c : */
diff --git a/src/proto/term.pro b/src/proto/term.pro
index 42405dd..333df92 100644
--- a/src/proto/term.pro
+++ b/src/proto/term.pro
@@ -76,4 +76,5 @@
void swap_tcap(void);
guicolor_T gui_get_color_cmn(char_u *name);
guicolor_T gui_get_rgb_color_cmn(int r, int g, int b);
+void cterm_color2rgb(int nr, uint8_t *r, uint8_t *g, uint8_t *b, uint8_t *ansi_idx);
/* vim: set ft=c : */