[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
copywin() behaves oddly... can anyone explain?
From: |
Bryan Christ |
Subject: |
copywin() behaves oddly... can anyone explain? |
Date: |
Mon, 07 May 2007 14:04:46 -0500 |
User-agent: |
Thunderbird 1.5.0.10 (X11/20070302) |
Can anyone explain this behavior:
/* this doesnt work */
mirror=dupwin(window); /* window is a subwin */
getmaxyx(window,y,x);
copywin(window,0,0,0,0,y,x,FALSE); /* <--copywin will return ERR */
/* this does work, same as above but... */
copywin(window,0,0,0,0,y-1,x-1,FALSE)
- copywin() behaves oddly... can anyone explain?,
Bryan Christ <=