X-Git-Url: http://ncurses.scripts.mit.edu/?a=blobdiff_plain;ds=sidebyside;f=Ada95%2Fhtml%2Fman%2Fcurs_inch.3x.html;fp=Ada95%2Fhtml%2Fman%2Fcurs_inch.3x.html;h=a63105403d2384787e6c207ca7b94a474f9bef68;hb=0eb88fc5281804773e2a0c7a488a4452463535ce;hp=0000000000000000000000000000000000000000;hpb=661078ddbde3ce0f3b06e95642fbb9b5fef7dca1;p=ncurses.git diff --git a/Ada95/html/man/curs_inch.3x.html b/Ada95/html/man/curs_inch.3x.html new file mode 100644 index 00000000..a6310540 --- /dev/null +++ b/Ada95/html/man/curs_inch.3x.html @@ -0,0 +1,68 @@ + + +
+       inch,  winch,  mvinch,  mvwinch  -  get  a  character  and
+       attributes from a curses window
+
+
+
+

SYNOPSIS

+       #include 
+
+       chtype inch(void);
+       chtype winch(WINDOW *win);
+       chtype mvinch(int y, int x);
+       chtype mvwinch(WINDOW *win, int y, int x);
+
+
+
+

DESCRIPTION

+       These routines return the character, of  type  chtype,  at
+       the   current  position  in  the  named  window.   If  any
+       attributes are set for that  position,  their  values  are
+       OR'ed  into  the  value  returned.   Constants  defined in
+        can be used with the & (logical  AND)  operator
+       to extract the character or attributes alone.
+
+
+   Attributes
+       The  following  bit-masks  may  be  AND-ed with characters
+       returned by winch.
+
+       l  l  .   A_CHARTEXT     Bit-mask  to  extract   character
+       A_ATTRIBUTES   Bit-mask      to     extract     attributes
+       A_COLOR   Bit-mask to extract color-pair field information
+
+
+
+

NOTES

+       Note that all of these routines may be macros.
+
+
+
+

PORTABILITY

+       These  functions are described in the XSI Curses standard,
+       Issue 4.
+
+
+
+

SEE ALSO

+       curses(3X).
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +