Skip to content

Commit

Permalink
Update 4 packages
Browse files Browse the repository at this point in the history
mingw-w64-i686-libtre-git-r128.6fb7206 (3 -> 1)
mingw-w64-i686-ncurses (6.4.20230708-1 -> 6.4.20231217-1)
mingw-w64-x86_64-libtre-git-r128.6fb7206 (3 -> 1)
mingw-w64-x86_64-ncurses (6.4.20230708-1 -> 6.4.20231217-1)

Signed-off-by: Git for Windows Build Agent <ci@git-for-windows.build>
  • Loading branch information
Git for Windows Build Agent committed Dec 23, 2023
1 parent 157c7c2 commit 2e9cdaf
Show file tree
Hide file tree
Showing 2,637 changed files with 479 additions and 229 deletions.
Binary file modified mingw32/bin/i686-w64-mingw32-agrep.exe
Binary file not shown.
Binary file modified mingw32/bin/i686-w64-mingw32-captoinfo.exe
Binary file not shown.
Binary file modified mingw32/bin/i686-w64-mingw32-clear.exe
Binary file not shown.
Binary file modified mingw32/bin/i686-w64-mingw32-infocmp.exe
Binary file not shown.
Binary file modified mingw32/bin/i686-w64-mingw32-infotocap.exe
Binary file not shown.
Binary file modified mingw32/bin/i686-w64-mingw32-reset.exe
Binary file not shown.
Binary file modified mingw32/bin/i686-w64-mingw32-tabs.exe
Binary file not shown.
Binary file modified mingw32/bin/i686-w64-mingw32-tic.exe
Binary file not shown.
Binary file modified mingw32/bin/i686-w64-mingw32-toe.exe
Binary file not shown.
Binary file modified mingw32/bin/i686-w64-mingw32-tput.exe
Binary file not shown.
Binary file modified mingw32/bin/i686-w64-mingw32-tset.exe
Binary file not shown.
Binary file modified mingw32/bin/libformw6.dll
Binary file not shown.
Binary file modified mingw32/bin/libmenuw6.dll
Binary file not shown.
Binary file modified mingw32/bin/libncurses++w6.dll
Binary file not shown.
Binary file modified mingw32/bin/libncursesw6.dll
Binary file not shown.
Binary file modified mingw32/bin/libpanelw6.dll
Binary file not shown.
Binary file modified mingw32/bin/libtre-5.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion mingw32/bin/ncursesw6-config
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ ENDECHO
;;
# identification
--version)
echo "6.4.20230708"
echo "6.4.20231217"
;;
--abi-version)
echo "6"
Expand Down
54 changes: 31 additions & 23 deletions mingw32/include/ncurses/curses.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
* and: Thomas E. Dickey 1996-on *
****************************************************************************/

/* $Id: curses.h.in,v 1.280 2023/05/06 19:19:20 tom Exp $ */
/* $Id: curses.h.in,v 1.281 2023/08/12 14:20:15 tom Exp $ */

#ifndef __NCURSES_H
#define __NCURSES_H
Expand Down Expand Up @@ -72,7 +72,7 @@
/* These are defined only in curses.h, and are used for conditional compiles */
#define NCURSES_VERSION_MAJOR 6
#define NCURSES_VERSION_MINOR 4
#define NCURSES_VERSION_PATCH 20230708
#define NCURSES_VERSION_PATCH 20231217

/* This is defined in more than one ncurses header, for identification */
#undef NCURSES_VERSION
Expand Down Expand Up @@ -148,10 +148,10 @@
* Definitions used to make WINDOW and similar structs opaque.
*/
#ifndef NCURSES_INTERNALS
#define NCURSES_OPAQUE 0
#define NCURSES_OPAQUE_FORM 0
#define NCURSES_OPAQUE_MENU 0
#define NCURSES_OPAQUE_PANEL 0
#define NCURSES_OPAQUE 1
#define NCURSES_OPAQUE_FORM 1
#define NCURSES_OPAQUE_MENU 1
#define NCURSES_OPAQUE_PANEL 1
#endif

/*
Expand Down Expand Up @@ -477,7 +477,7 @@ typedef struct
wchar_t chars[CCHARW_MAX];
#if 1
#undef NCURSES_EXT_COLORS
#define NCURSES_EXT_COLORS 20230708
#define NCURSES_EXT_COLORS 20231217
int ext_color; /* color pair, must be more than 16-bits */
#endif
}
Expand Down Expand Up @@ -924,14 +924,12 @@ extern NCURSES_EXPORT(int) getpary (const WINDOW *); /* generated */
*/
#if 1
#undef NCURSES_EXT_FUNCS
#define NCURSES_EXT_FUNCS 20230708
#define NCURSES_EXT_FUNCS 20231217
typedef int (*NCURSES_WINDOW_CB)(WINDOW *, void *);
typedef int (*NCURSES_SCREEN_CB)(SCREEN *, void *);
extern NCURSES_EXPORT(bool) is_term_resized (int, int);
extern NCURSES_EXPORT(char *) keybound (int, int);
extern NCURSES_EXPORT(const char *) curses_version (void);
extern NCURSES_EXPORT(int) alloc_pair (int, int);
extern NCURSES_EXPORT(int) assume_default_colors (int, int);
extern NCURSES_EXPORT(const char *) curses_version (void);
extern NCURSES_EXPORT(int) define_key (const char *, int);
extern NCURSES_EXPORT(int) extended_color_content(int, int *, int *, int *);
extern NCURSES_EXPORT(int) extended_pair_content(int, int *, int *);
Expand All @@ -941,8 +939,15 @@ extern NCURSES_EXPORT(int) free_pair (int);
extern NCURSES_EXPORT(int) get_escdelay (void);
extern NCURSES_EXPORT(int) init_extended_color(int, int, int, int);
extern NCURSES_EXPORT(int) init_extended_pair(int, int, int);
extern NCURSES_EXPORT(int) is_cbreak(void);
extern NCURSES_EXPORT(int) is_echo(void);
extern NCURSES_EXPORT(int) is_nl(void);
extern NCURSES_EXPORT(int) is_raw(void);
extern NCURSES_EXPORT(bool) is_term_resized (int, int);
extern NCURSES_EXPORT(int) key_defined (const char *);
extern NCURSES_EXPORT(char *) keybound (int, int);
extern NCURSES_EXPORT(int) keyok (int, bool);
extern NCURSES_EXPORT(void) nofilter(void);
extern NCURSES_EXPORT(void) reset_color_pairs (void);
extern NCURSES_EXPORT(int) resize_term (int, int);
extern NCURSES_EXPORT(int) resizeterm (int, int);
Expand All @@ -953,7 +958,6 @@ extern NCURSES_EXPORT(int) use_legacy_coding (int);
extern NCURSES_EXPORT(int) use_screen (SCREEN *, NCURSES_SCREEN_CB, void *);
extern NCURSES_EXPORT(int) use_window (WINDOW *, NCURSES_WINDOW_CB, void *);
extern NCURSES_EXPORT(int) wresize (WINDOW *, int, int);
extern NCURSES_EXPORT(void) nofilter(void);

#if 1
#undef NCURSES_XNAMES
Expand Down Expand Up @@ -991,7 +995,7 @@ extern NCURSES_EXPORT(int) wgetscrreg (const WINDOW *, int *, int *); /* generat
*/
#if 1
#undef NCURSES_SP_FUNCS
#define NCURSES_SP_FUNCS 20230708
#define NCURSES_SP_FUNCS 20231217
#define NCURSES_SP_NAME(name) name##_sp

/* Define the sp-funcs helper function */
Expand Down Expand Up @@ -1074,20 +1078,24 @@ extern NCURSES_EXPORT(void) NCURSES_SP_NAME(use_tioctl) (SCREEN*, bool); /* impl
extern NCURSES_EXPORT(int) NCURSES_SP_NAME(vidattr) (SCREEN*, chtype); /* implemented:SP_FUNC */
extern NCURSES_EXPORT(int) NCURSES_SP_NAME(vidputs) (SCREEN*, chtype, NCURSES_SP_OUTC); /* implemented:SP_FUNC */
#if 1
extern NCURSES_EXPORT(char *) NCURSES_SP_NAME(keybound) (SCREEN*, int, int); /* implemented:EXT_SP_FUNC */
extern NCURSES_EXPORT(int) NCURSES_SP_NAME(alloc_pair) (SCREEN*, int, int); /* implemented:EXT_SP_FUNC */
extern NCURSES_EXPORT(int) NCURSES_SP_NAME(assume_default_colors) (SCREEN*, int, int); /* implemented:EXT_SP_FUNC */
extern NCURSES_EXPORT(int) NCURSES_SP_NAME(define_key) (SCREEN*, const char *, int); /* implemented:EXT_SP_FUNC */
extern NCURSES_EXPORT(int) NCURSES_SP_NAME(extended_color_content) (SCREEN*, int, int *, int *, int *); /* implemented:EXT_SP_FUNC */
extern NCURSES_EXPORT(int) NCURSES_SP_NAME(extended_pair_content) (SCREEN*, int, int *, int *); /* implemented:EXT_SP_FUNC */
extern NCURSES_EXPORT(int) NCURSES_SP_NAME(extended_slk_color) (SCREEN*, int); /* implemented:EXT_SP_FUNC */
extern NCURSES_EXPORT(int) NCURSES_SP_NAME(get_escdelay) (SCREEN*); /* implemented:EXT_SP_FUNC */
extern NCURSES_EXPORT(int) NCURSES_SP_NAME(find_pair) (SCREEN*, int, int); /* implemented:EXT_SP_FUNC */
extern NCURSES_EXPORT(int) NCURSES_SP_NAME(free_pair) (SCREEN*, int); /* implemented:EXT_SP_FUNC */
extern NCURSES_EXPORT(int) NCURSES_SP_NAME(get_escdelay) (SCREEN*); /* implemented:EXT_SP_FUNC */
extern NCURSES_EXPORT(int) NCURSES_SP_NAME(init_extended_color) (SCREEN*, int, int, int, int); /* implemented:EXT_SP_FUNC */
extern NCURSES_EXPORT(int) NCURSES_SP_NAME(init_extended_pair) (SCREEN*, int, int, int); /* implemented:EXT_SP_FUNC */
extern NCURSES_EXPORT(int) NCURSES_SP_NAME(is_cbreak) (SCREEN*); /* implemented:EXT_SP_FUNC */
extern NCURSES_EXPORT(int) NCURSES_SP_NAME(is_echo) (SCREEN*); /* implemented:EXT_SP_FUNC */
extern NCURSES_EXPORT(int) NCURSES_SP_NAME(is_nl) (SCREEN*); /* implemented:EXT_SP_FUNC */
extern NCURSES_EXPORT(int) NCURSES_SP_NAME(is_raw) (SCREEN*); /* implemented:EXT_SP_FUNC */
extern NCURSES_EXPORT(bool) NCURSES_SP_NAME(is_term_resized) (SCREEN*, int, int); /* implemented:EXT_SP_FUNC */
extern NCURSES_EXPORT(int) NCURSES_SP_NAME(key_defined) (SCREEN*, const char *); /* implemented:EXT_SP_FUNC */
extern NCURSES_EXPORT(char *) NCURSES_SP_NAME(keybound) (SCREEN*, int, int); /* implemented:EXT_SP_FUNC */
extern NCURSES_EXPORT(int) NCURSES_SP_NAME(keyok) (SCREEN*, int, bool); /* implemented:EXT_SP_FUNC */
extern NCURSES_EXPORT(void) NCURSES_SP_NAME(nofilter) (SCREEN*); /* implemented */ /* implemented:EXT_SP_FUNC */
extern NCURSES_EXPORT(void) NCURSES_SP_NAME(reset_color_pairs) (SCREEN*); /* implemented:EXT_SP_FUNC */
Expand Down Expand Up @@ -1512,7 +1520,7 @@ extern NCURSES_EXPORT_VAR(int) TABSIZE;
#define KEY_SRESET 0530 /* Soft (partial) reset (unreliable) */
#define KEY_RESET 0531 /* Reset or hard reset (unreliable) */
/*
* These definitions were generated by ./MKkey_defs.sh ../../ncurses-6.4-20230708/include/Caps ../../ncurses-6.4-20230708/include/Caps-ncurses
* These definitions were generated by ./MKkey_defs.sh ../../ncurses-6.4-20231217/include/Caps ../../ncurses-6.4-20231217/include/Caps-ncurses
*/
#define KEY_DOWN 0402 /* down-arrow key */
#define KEY_UP 0403 /* up-arrow key */
Expand Down Expand Up @@ -1922,7 +1930,7 @@ extern NCURSES_EXPORT(const char *) _nc_viswibuf(const wint_t *);
#endif

#endif /* NCURSES_WIDECHAR */
/* $Id: curses.tail,v 1.26 2021/03/20 15:49:25 tom Exp $ */
/* $Id: curses.tail,v 1.27 2023/08/05 19:43:46 tom Exp $ */
/*
* vile:cmode:
* This file is part of ncurses, designed to be appended after curses.h.in
Expand All @@ -1937,12 +1945,12 @@ extern NCURSES_EXPORT(const char *) _nc_viswibuf(const wint_t *);
#define NCURSES_MOUSE_MASK(b,m) ((m) << (((b) - 1) * 6))
#endif

#define NCURSES_BUTTON_RELEASED 001L
#define NCURSES_BUTTON_PRESSED 002L
#define NCURSES_BUTTON_CLICKED 004L
#define NCURSES_DOUBLE_CLICKED 010L
#define NCURSES_TRIPLE_CLICKED 020L
#define NCURSES_RESERVED_EVENT 040L
#define NCURSES_BUTTON_RELEASED 001UL
#define NCURSES_BUTTON_PRESSED 002UL
#define NCURSES_BUTTON_CLICKED 004UL
#define NCURSES_DOUBLE_CLICKED 010UL
#define NCURSES_TRIPLE_CLICKED 020UL
#define NCURSES_RESERVED_EVENT 040UL

/* event masks */
#define BUTTON1_RELEASED NCURSES_MOUSE_MASK(1, NCURSES_BUTTON_RELEASED)
Expand Down
54 changes: 31 additions & 23 deletions mingw32/include/ncurses/ncurses.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
* and: Thomas E. Dickey 1996-on *
****************************************************************************/

/* $Id: curses.h.in,v 1.280 2023/05/06 19:19:20 tom Exp $ */
/* $Id: curses.h.in,v 1.281 2023/08/12 14:20:15 tom Exp $ */

#ifndef __NCURSES_H
#define __NCURSES_H
Expand Down Expand Up @@ -72,7 +72,7 @@
/* These are defined only in curses.h, and are used for conditional compiles */
#define NCURSES_VERSION_MAJOR 6
#define NCURSES_VERSION_MINOR 4
#define NCURSES_VERSION_PATCH 20230708
#define NCURSES_VERSION_PATCH 20231217

/* This is defined in more than one ncurses header, for identification */
#undef NCURSES_VERSION
Expand Down Expand Up @@ -148,10 +148,10 @@
* Definitions used to make WINDOW and similar structs opaque.
*/
#ifndef NCURSES_INTERNALS
#define NCURSES_OPAQUE 0
#define NCURSES_OPAQUE_FORM 0
#define NCURSES_OPAQUE_MENU 0
#define NCURSES_OPAQUE_PANEL 0
#define NCURSES_OPAQUE 1
#define NCURSES_OPAQUE_FORM 1
#define NCURSES_OPAQUE_MENU 1
#define NCURSES_OPAQUE_PANEL 1
#endif

/*
Expand Down Expand Up @@ -477,7 +477,7 @@ typedef struct
wchar_t chars[CCHARW_MAX];
#if 1
#undef NCURSES_EXT_COLORS
#define NCURSES_EXT_COLORS 20230708
#define NCURSES_EXT_COLORS 20231217
int ext_color; /* color pair, must be more than 16-bits */
#endif
}
Expand Down Expand Up @@ -924,14 +924,12 @@ extern NCURSES_EXPORT(int) getpary (const WINDOW *); /* generated */
*/
#if 1
#undef NCURSES_EXT_FUNCS
#define NCURSES_EXT_FUNCS 20230708
#define NCURSES_EXT_FUNCS 20231217
typedef int (*NCURSES_WINDOW_CB)(WINDOW *, void *);
typedef int (*NCURSES_SCREEN_CB)(SCREEN *, void *);
extern NCURSES_EXPORT(bool) is_term_resized (int, int);
extern NCURSES_EXPORT(char *) keybound (int, int);
extern NCURSES_EXPORT(const char *) curses_version (void);
extern NCURSES_EXPORT(int) alloc_pair (int, int);
extern NCURSES_EXPORT(int) assume_default_colors (int, int);
extern NCURSES_EXPORT(const char *) curses_version (void);
extern NCURSES_EXPORT(int) define_key (const char *, int);
extern NCURSES_EXPORT(int) extended_color_content(int, int *, int *, int *);
extern NCURSES_EXPORT(int) extended_pair_content(int, int *, int *);
Expand All @@ -941,8 +939,15 @@ extern NCURSES_EXPORT(int) free_pair (int);
extern NCURSES_EXPORT(int) get_escdelay (void);
extern NCURSES_EXPORT(int) init_extended_color(int, int, int, int);
extern NCURSES_EXPORT(int) init_extended_pair(int, int, int);
extern NCURSES_EXPORT(int) is_cbreak(void);
extern NCURSES_EXPORT(int) is_echo(void);
extern NCURSES_EXPORT(int) is_nl(void);
extern NCURSES_EXPORT(int) is_raw(void);
extern NCURSES_EXPORT(bool) is_term_resized (int, int);
extern NCURSES_EXPORT(int) key_defined (const char *);
extern NCURSES_EXPORT(char *) keybound (int, int);
extern NCURSES_EXPORT(int) keyok (int, bool);
extern NCURSES_EXPORT(void) nofilter(void);
extern NCURSES_EXPORT(void) reset_color_pairs (void);
extern NCURSES_EXPORT(int) resize_term (int, int);
extern NCURSES_EXPORT(int) resizeterm (int, int);
Expand All @@ -953,7 +958,6 @@ extern NCURSES_EXPORT(int) use_legacy_coding (int);
extern NCURSES_EXPORT(int) use_screen (SCREEN *, NCURSES_SCREEN_CB, void *);
extern NCURSES_EXPORT(int) use_window (WINDOW *, NCURSES_WINDOW_CB, void *);
extern NCURSES_EXPORT(int) wresize (WINDOW *, int, int);
extern NCURSES_EXPORT(void) nofilter(void);

#if 1
#undef NCURSES_XNAMES
Expand Down Expand Up @@ -991,7 +995,7 @@ extern NCURSES_EXPORT(int) wgetscrreg (const WINDOW *, int *, int *); /* generat
*/
#if 1
#undef NCURSES_SP_FUNCS
#define NCURSES_SP_FUNCS 20230708
#define NCURSES_SP_FUNCS 20231217
#define NCURSES_SP_NAME(name) name##_sp

/* Define the sp-funcs helper function */
Expand Down Expand Up @@ -1074,20 +1078,24 @@ extern NCURSES_EXPORT(void) NCURSES_SP_NAME(use_tioctl) (SCREEN*, bool); /* impl
extern NCURSES_EXPORT(int) NCURSES_SP_NAME(vidattr) (SCREEN*, chtype); /* implemented:SP_FUNC */
extern NCURSES_EXPORT(int) NCURSES_SP_NAME(vidputs) (SCREEN*, chtype, NCURSES_SP_OUTC); /* implemented:SP_FUNC */
#if 1
extern NCURSES_EXPORT(char *) NCURSES_SP_NAME(keybound) (SCREEN*, int, int); /* implemented:EXT_SP_FUNC */
extern NCURSES_EXPORT(int) NCURSES_SP_NAME(alloc_pair) (SCREEN*, int, int); /* implemented:EXT_SP_FUNC */
extern NCURSES_EXPORT(int) NCURSES_SP_NAME(assume_default_colors) (SCREEN*, int, int); /* implemented:EXT_SP_FUNC */
extern NCURSES_EXPORT(int) NCURSES_SP_NAME(define_key) (SCREEN*, const char *, int); /* implemented:EXT_SP_FUNC */
extern NCURSES_EXPORT(int) NCURSES_SP_NAME(extended_color_content) (SCREEN*, int, int *, int *, int *); /* implemented:EXT_SP_FUNC */
extern NCURSES_EXPORT(int) NCURSES_SP_NAME(extended_pair_content) (SCREEN*, int, int *, int *); /* implemented:EXT_SP_FUNC */
extern NCURSES_EXPORT(int) NCURSES_SP_NAME(extended_slk_color) (SCREEN*, int); /* implemented:EXT_SP_FUNC */
extern NCURSES_EXPORT(int) NCURSES_SP_NAME(get_escdelay) (SCREEN*); /* implemented:EXT_SP_FUNC */
extern NCURSES_EXPORT(int) NCURSES_SP_NAME(find_pair) (SCREEN*, int, int); /* implemented:EXT_SP_FUNC */
extern NCURSES_EXPORT(int) NCURSES_SP_NAME(free_pair) (SCREEN*, int); /* implemented:EXT_SP_FUNC */
extern NCURSES_EXPORT(int) NCURSES_SP_NAME(get_escdelay) (SCREEN*); /* implemented:EXT_SP_FUNC */
extern NCURSES_EXPORT(int) NCURSES_SP_NAME(init_extended_color) (SCREEN*, int, int, int, int); /* implemented:EXT_SP_FUNC */
extern NCURSES_EXPORT(int) NCURSES_SP_NAME(init_extended_pair) (SCREEN*, int, int, int); /* implemented:EXT_SP_FUNC */
extern NCURSES_EXPORT(int) NCURSES_SP_NAME(is_cbreak) (SCREEN*); /* implemented:EXT_SP_FUNC */
extern NCURSES_EXPORT(int) NCURSES_SP_NAME(is_echo) (SCREEN*); /* implemented:EXT_SP_FUNC */
extern NCURSES_EXPORT(int) NCURSES_SP_NAME(is_nl) (SCREEN*); /* implemented:EXT_SP_FUNC */
extern NCURSES_EXPORT(int) NCURSES_SP_NAME(is_raw) (SCREEN*); /* implemented:EXT_SP_FUNC */
extern NCURSES_EXPORT(bool) NCURSES_SP_NAME(is_term_resized) (SCREEN*, int, int); /* implemented:EXT_SP_FUNC */
extern NCURSES_EXPORT(int) NCURSES_SP_NAME(key_defined) (SCREEN*, const char *); /* implemented:EXT_SP_FUNC */
extern NCURSES_EXPORT(char *) NCURSES_SP_NAME(keybound) (SCREEN*, int, int); /* implemented:EXT_SP_FUNC */
extern NCURSES_EXPORT(int) NCURSES_SP_NAME(keyok) (SCREEN*, int, bool); /* implemented:EXT_SP_FUNC */
extern NCURSES_EXPORT(void) NCURSES_SP_NAME(nofilter) (SCREEN*); /* implemented */ /* implemented:EXT_SP_FUNC */
extern NCURSES_EXPORT(void) NCURSES_SP_NAME(reset_color_pairs) (SCREEN*); /* implemented:EXT_SP_FUNC */
Expand Down Expand Up @@ -1512,7 +1520,7 @@ extern NCURSES_EXPORT_VAR(int) TABSIZE;
#define KEY_SRESET 0530 /* Soft (partial) reset (unreliable) */
#define KEY_RESET 0531 /* Reset or hard reset (unreliable) */
/*
* These definitions were generated by ./MKkey_defs.sh ../../ncurses-6.4-20230708/include/Caps ../../ncurses-6.4-20230708/include/Caps-ncurses
* These definitions were generated by ./MKkey_defs.sh ../../ncurses-6.4-20231217/include/Caps ../../ncurses-6.4-20231217/include/Caps-ncurses
*/
#define KEY_DOWN 0402 /* down-arrow key */
#define KEY_UP 0403 /* up-arrow key */
Expand Down Expand Up @@ -1922,7 +1930,7 @@ extern NCURSES_EXPORT(const char *) _nc_viswibuf(const wint_t *);
#endif

#endif /* NCURSES_WIDECHAR */
/* $Id: curses.tail,v 1.26 2021/03/20 15:49:25 tom Exp $ */
/* $Id: curses.tail,v 1.27 2023/08/05 19:43:46 tom Exp $ */
/*
* vile:cmode:
* This file is part of ncurses, designed to be appended after curses.h.in
Expand All @@ -1937,12 +1945,12 @@ extern NCURSES_EXPORT(const char *) _nc_viswibuf(const wint_t *);
#define NCURSES_MOUSE_MASK(b,m) ((m) << (((b) - 1) * 6))
#endif

#define NCURSES_BUTTON_RELEASED 001L
#define NCURSES_BUTTON_PRESSED 002L
#define NCURSES_BUTTON_CLICKED 004L
#define NCURSES_DOUBLE_CLICKED 010L
#define NCURSES_TRIPLE_CLICKED 020L
#define NCURSES_RESERVED_EVENT 040L
#define NCURSES_BUTTON_RELEASED 001UL
#define NCURSES_BUTTON_PRESSED 002UL
#define NCURSES_BUTTON_CLICKED 004UL
#define NCURSES_DOUBLE_CLICKED 010UL
#define NCURSES_TRIPLE_CLICKED 020UL
#define NCURSES_RESERVED_EVENT 040UL

/* event masks */
#define BUTTON1_RELEASED NCURSES_MOUSE_MASK(1, NCURSES_BUTTON_RELEASED)
Expand Down
2 changes: 1 addition & 1 deletion mingw32/include/ncurses/term.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ typedef struct screen SCREEN;

#if 1
#undef NCURSES_SP_FUNCS
#define NCURSES_SP_FUNCS 20230708
#define NCURSES_SP_FUNCS 20231217
#undef NCURSES_SP_NAME
#define NCURSES_SP_NAME(name) name##_sp

Expand Down
Loading

0 comments on commit 2e9cdaf

Please sign in to comment.