1mvderwin(3XCURSES)      X/Open Curses Library Functions     mvderwin(3XCURSES)
2
3
4

NAME

6       mvderwin - map area of parent window to subwindow
7

SYNOPSIS

9       cc [ flag... ] file... -I /usr/xpg4/include  -L  /usr/xpg4/lib \
10        -R  /usr/xpg4/lib  -lcurses  [ library... ]
11
12       c89 [ flag... ] file... -lcurses [ library... ]
13
14       #include <curses.h>
15
16       int mvderwin(WINDOW *win, int par_y, int par_x);
17
18

PARAMETERS

20       win      Is a pointer to the window to be mapped.
21
22
23       par_y    Is  the  y (row) coordinate of the placement of the upper left
24                corner of window  relative to the parent window.
25
26
27       par_x    Is the x (column) coordinate of the  placement  of  the  upper
28                left corner of  the window relative to the parent window.
29
30

DESCRIPTION

32       The  mvderwin()  function defines a mapped area of win's parent  window
33       that is the same size as win and has its upper left corner at  position
34       par_y, par_x of the parent window.
35
36
37       Whenever  win  is refreshed, its contents are updated to match those of
38       the mapped area and any reference to characters in win is treated as  a
39       reference to corresponding characters in the mapped area.
40

RETURN VALUES

42       On  success,  the mvderwin() function returns OK. Otherwise, it returns
43       ERR.
44

ERRORS

46       None.
47

ATTRIBUTES

49       See attributes(5) for descriptions of the following attributes:
50
51
52
53
54       ┌─────────────────────────────┬─────────────────────────────┐
55       │      ATTRIBUTE TYPE         │      ATTRIBUTE VALUE        │
56       ├─────────────────────────────┼─────────────────────────────┤
57       │Interface Stability          │Standard                     │
58       ├─────────────────────────────┼─────────────────────────────┤
59       │MT-Level                     │Unsafe                       │
60       └─────────────────────────────┴─────────────────────────────┘
61

SEE ALSO

63       delwin(3XCURSES), derwin(3XCURSES), libcurses(3XCURSES), attributes(5),
64       standards(5)
65
66
67
68SunOS 5.11                        5 Jun 2002                mvderwin(3XCURSES)
Impressum