You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi i'm trying to follow your library to learn a bit more about dart ffi and i'm curious about this section
where the unix definition is
// cc_t c_cc[NCCS]; /* control chars */
but you chose to do
// This replaces c_cc[20]
@Int8()
int c_cc0;
@Int8()
int c_cc1;
@Int8()
int c_cc2;
@Int8()
int c_cc3;
@Int8()
int c_cc4;
@Int8()
int c_cc5;
@Int8()
int c_cc6;
@Int8()
int c_cc7;
@Int8()
int c_cc8;
@Int8()
int c_cc9;
@Int8()
int c_cc10;
@Int8()
int c_cc11;
@Int8()
int c_cc12;
@Int8()
int c_cc13;
@Int8()
int c_cc14;
@Int8()
int c_cc15;
@Int8()
int c_cc16; // VMIN
@Int8()
int c_cc17; // VTIME
@Int8()
int c_cc18;
@Int8()
int c_cc19;
is there a reference anywhere than explains this?
taken from here
Hi i'm trying to follow your library to learn a bit more about dart ffi and i'm curious about this section
where the unix definition is
// cc_t c_cc[NCCS]; /* control chars */
but you chose to do
is there a reference anywhere than explains this?
taken from here
dart_console/lib/src/ffi/unix/termios.dart
Line 87 in 28f333a
The text was updated successfully, but these errors were encountered: