X-Git-Url: http://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=doc%2Fhtml%2Fman%2Fcurs_sp_funcs.3x.html;h=c70a6d396b22451f0cadaa3ac47b87cc51ef67a8;hp=0171617220fda52b3ee31c177dec19cda7d07a42;hb=HEAD;hpb=084e3b44fc1c904d5ab941da55f47a237cb15766 diff --git a/doc/html/man/curs_sp_funcs.3x.html b/doc/html/man/curs_sp_funcs.3x.html index 01716172..4b84cd78 100644 --- a/doc/html/man/curs_sp_funcs.3x.html +++ b/doc/html/man/curs_sp_funcs.3x.html @@ -1,6 +1,6 @@ -curs_sp_funcs 3x 2023-11-25 ncurses 6.4 Library calls +curs_sp_funcs 3x 2024-05-11 ncurses 6.5 Library calls -

curs_sp_funcs 3x 2023-11-25 ncurses 6.4 Library calls

+

curs_sp_funcs 3x 2024-05-11 ncurses 6.5 Library calls

 curs_sp_funcs(3x)                Library calls               curs_sp_funcs(3x)
 
@@ -73,7 +70,7 @@
        int echo_sp(SCREEN* sp);
        int endwin_sp(SCREEN* sp);
        char erasechar_sp(SCREEN* sp);
-       int erasewchar_sp(SCREEN* sp, wchar_t *ch);
+       int erasewchar_sp(SCREEN* sp, wchar_t *wc);
        int extended_color_content_sp(SCREEN * sp, int color, int * r, int * g, int * b);
        int extended_pair_content_sp(SCREEN* sp, int pair, int * fg, int * bg);
        int extended_slk_color_sp(SCREEN* sp, int pair);
@@ -91,7 +88,7 @@
 
        bool has_ic_sp(SCREEN* sp);
        bool has_il_sp(SCREEN* sp);
-       int has_key_sp(SCREEN* sp, int ch);
+       int has_key_sp(SCREEN* sp, int c);
        bool has_mouse_sp(SCREEN* sp);
        int init_color_sp(SCREEN* sp, short color, short r, short g, short b);
        int init_extended_color_sp(SCREEN* sp, int color, int r, int g, int b);
@@ -111,7 +108,7 @@
        int keyok_sp(SCREEN* sp, int keycode, bool enable);
        char killchar_sp(SCREEN* sp);
 
-       int killwchar_sp(SCREEN* sp, wchar_t *ch);
+       int killwchar_sp(SCREEN* sp, wchar_t *wc);
        char* longname_sp(SCREEN* sp);
        int mcprint_sp(SCREEN* sp, char *data, int len);
        int mouseinterval_sp(SCREEN* sp, int erval);
@@ -169,8 +166,8 @@
        chtype termattrs_sp(SCREEN* sp);
        char* termname_sp(SCREEN* sp);
        int typeahead_sp(SCREEN* sp, int fd);
-       int unget_wch_sp(SCREEN* sp, const wchar_t wch);
-       int ungetch_sp(SCREEN* sp, int ch);
+       int unget_wch_sp(SCREEN* sp, const wchar_t wc);
+       int ungetch_sp(SCREEN* sp, int c);
        int ungetmouse_sp(SCREEN* sp, MEVENT* event);
        int use_default_colors_sp(SCREEN* sp);
        void use_env_sp(SCREEN* sp, bool bf);
@@ -181,7 +178,7 @@
        int vid_puts_sp(SCREEN* sp, attr_t attrs, short pair, void * opts, NCURSES_SP_OUTC putc);
        int vidattr_sp(SCREEN* sp, chtype attrs);
        int vidputs_sp(SCREEN* sp, chtype attrs, NCURSES_SP_OUTC putc);
-       wchar_t* wunctrl_sp(SCREEN* sp, cchar_t *ch);
+       wchar_t* wunctrl_sp(SCREEN* sp, cchar_t *wch);
 
        #include <form.h>
 
@@ -218,19 +215,19 @@
 
        #include <unctrl.h>
 
-       NCURSES_CONST char* unctrl_sp(SCREEN* sp, chtype c);
+       NCURSES_CONST char* unctrl_sp(SCREEN* sp, chtype ch);
 
 
 

DESCRIPTION

        This  implementation  can  be  configured to provide a set of functions
        which improve the ability to manage multiple screens.  This feature can
-       be added to any of the configurations supported by ncurses; it adds new
-       entrypoints without changing the meaning of any of the existing ones.
+       be added to any of the configurations supported by ncurses; it adds new
+       symbols without changing the meaning of any of the existing ones.
 
 
-

IMPROVED FUNCTIONS

+

Improved Functions

        Most of the functions  are  new  versions  of  existing  functions.   A
-       parameter  is added at the front of the parameter list.  It is a SCREEN
+       parameter  is added at the front of the parameter list.  It is a SCREEN
        pointer.
 
        The existing functions all use the current screen, which  is  a  static
@@ -239,7 +236,7 @@
        multiple screens.
 
 
-

NEW FUNCTIONS

+

New Functions

        Here are the new functions:
 
        ceiling_panel
@@ -254,8 +251,8 @@
             With  the  screen-pointer extension, there are situations where it
             must create a current screen before the unextended  library  does.
             The  new_prescr function is used internally to handle these cases.
-            It is also provided as an  entrypoint  to  allow  applications  to
-            customize the library initialization.
+            It is also provided to allow  applications  to  customize  library
+            initialization.
 
 
 

NOTES

@@ -286,9 +283,9 @@
 
 
 

PORTABILITY

-       These routines are specific to ncurses.  They  were  not  supported  on
+       These routines are specific to ncurses.  They  were  not  supported  on
        Version 7, BSD or System V implementations.  It is recommended that any
-       code   depending   on   ncurses   extensions   be   conditioned   using
+       code   depending   on   ncurses   extensions   be   conditioned   using
        NCURSES_SP_FUNCS.
 
 
@@ -297,7 +294,7 @@
 
 
 
-ncurses 6.4                       2023-11-25                 curs_sp_funcs(3x)
+ncurses 6.5                       2024-05-11                 curs_sp_funcs(3x)