X-Git-Url: http://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=doc%2Fhtml%2Fman%2Fcurs_legacy.3x.html;h=8f08da05735dd483f16cc5272ad07f504ba38006;hp=4489f2c0ea3d42bec0934055f26590299cd949b5;hb=0ac2306dd3aaab1338d8b1458c15a7e476cfc3ff;hpb=71c0306f0824ef2b10c4c5813fb003db48f3012e diff --git a/doc/html/man/curs_legacy.3x.html b/doc/html/man/curs_legacy.3x.html index 4489f2c0..8f08da05 100644 --- a/doc/html/man/curs_legacy.3x.html +++ b/doc/html/man/curs_legacy.3x.html @@ -27,7 +27,7 @@ * sale, use or other dealings in this Software without prior written * * authorization. * **************************************************************************** - * @Id: curs_legacy.3x,v 1.2 2010/07/31 16:11:27 tom Exp @ + * @Id: curs_legacy.3x,v 1.3 2010/09/11 22:21:52 tom Exp @ --> @@ -47,14 +47,14 @@

NAME

-       getbegx, getbegy, getcurx, getcury, getmaxx, getmaxy, get-
-       parx, getpary - get curses cursor and window coordinates
+       get curses cursor and window coordinates, attributes
 
 
 

SYNOPSIS

        #include <curses.h>
 
+       int getattrs(WINDOW *win);
        int getbegx(WINDOW *win);
        int getbegy(WINDOW *win);
        int getcurx(WINDOW *win);
@@ -67,33 +67,33 @@
 
 

DESCRIPTION

-       The getbegy and getbegx functions return the same data  as
+       The  getbegy and getbegx functions return the same data as
        getbegyx.
 
-       The  getcury and getcurx functions return the same data as
+       The getcury and getcurx functions return the same data  as
        getyx.
 
-       The getmaxy and getmaxx functions return the same data  as
+       The  getmaxy and getmaxx functions return the same data as
        getmaxyx.
 
-       The  getpary and getparx functions return the same data as
+       The getpary and getparx functions return the same data  as
        getparyx.
 
 
 

RETURN VALUE

-       These functions return an integer, or ERR  if  the  window
+       These  functions  return  an integer, or ERR if the window
        parameter is null.
 
 
 

NOTES

-       All  of  these interfaces are provided as macros and func-
-       tions.  The macros are suppressed (and only the  functions
-       provided)  when  NCURSES_OPAQUE  is defined.  The standard
+       All of these interfaces are provided as macros  and  func-
+       tions.   The macros are suppressed (and only the functions
+       provided) when NCURSES_OPAQUE is  defined.   The  standard
        forms such as getyx must be implemented as macros, and (in
        this implementation) are defined in terms of the functions
-       described here, to avoid reliance on internal  details  of
+       described  here,  to avoid reliance on internal details of
        the WINDOW structure.