notcurses_fds.3 man page #546

pull/555/head
nick black 4 years ago
parent 36bfa45d6c
commit 559a45326c
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC

@ -30,6 +30,7 @@
<a href="notcurses_directmode.3.html">notcurses_directmode</a>—minimal notcurses instances for styling text<br/>
<a href="notcurses_error.3.html">notcurses_error</a>—granular Notcurses error reporting<br/>
<a href="notcurses_fade.3.html">notcurses_fade</a>—fading and pulsing for <tt>ncplane</tt>s<br/>
<a href="notcurses_fds.3.html">notcurses_fds</a>—dumping file descriptors/subprocesses to <tt>ncplane</tt>s<br/>
<a href="notcurses_init.3.html">notcurses_init</a>—initialization<br/>
<a href="notcurses_input.3.html">notcurses_input</a>—collecting input<br/>
<a href="notcurses_lines.3.html">notcurses_lines</a>—drawing lines and boxes on <tt>ncplane</tt>s<br/>

@ -138,7 +138,10 @@ previous action.
**notcurses_cell(3)**, **notcurses_channels(3)**,
**notcurses_directmode(3)**,
**notcurses_error(3)**,
**notcurses_fade(3)**, **notcurses_init(3)**, **notcurses_input(3)**,
**notcurses_fade(3)**,
**notcurses_fds(3)**,
**notcurses_init(3)**,
**notcurses_input(3)**,
**notcurses_lines(3)**,
**notcurses_menu(3)**,
**notcurses_multiselector(3)**,

@ -11,10 +11,10 @@ notcurses_multiselector - high level widget for selecting from a set
**#include <notcurses/notcurses.h>**
```c
**struct ncinput;**
**struct ncplane;**
**struct notcurses;**
**struct ncmultiselector;**
struct ncinput;
struct ncplane;
struct notcurses;
struct ncmultiselector;
struct mselector_item {
char* option;

@ -11,10 +11,10 @@ notcurses_selector - high level widget for selecting from a set
**#include <notcurses/notcurses.h>**
```c
**struct ncinput;**
**struct ncplane;**
**struct notcurses;**
**struct ncselector;**
struct ncinput;
struct ncplane;
struct notcurses;
struct ncselector;
struct selector_item {
char* option;

@ -281,7 +281,9 @@ char* ncvisual_subtitle(const ncvisual* ncv){ // no support in OIIO
}
int ncvisual_init(int loglevel){
// FIXME set OIIO global attribute "debug" based on loglevel
(void)loglevel;
// FIXME check OIIO_VERSION_STRING components against linked openimageio_version()
return 0; // allow success here
}
@ -296,6 +298,7 @@ void ncvisual_destroy(ncvisual* ncv){
}
}
// FIXME would be nice to have OIIO::attributes("libraries") in here
const char* oiio_version(void){
return OIIO_VERSION_STRING;
}

Loading…
Cancel
Save