aboutsummaryrefslogtreecommitdiffstats
path: root/src
ModeNameSize
-rw-r--r--.cvsignore94logstatsplain
-rw-r--r--Doxyfile31139logstatsplain
-rw-r--r--Makefile2209logstatsplain
-rw-r--r--consoletype.1627logstatsplain
-rw-r--r--consoletype.c492logstatsplain
d---------doc61logstatsplain
-rw-r--r--doexec.1438logstatsplain
-rw-r--r--doexec.c129logstatsplain
-rw-r--r--getkey.c1099logstatsplain
-rw-r--r--initlog.12115logstatsplain
-rw-r--r--initlog.c10197logstatsplain
-rw-r--r--initlog.conf658logstatsplain
-rw-r--r--initlog.h302logstatsplain
-rw-r--r--ipcalc.11686logstatsplain
-rw-r--r--ipcalc.c9464logstatsplain
-rw-r--r--minilogd.c4204logstatsplain
-rw-r--r--mkkerneldoth1173logstatsplain
-rwxr-xr-xmkkerneldoth.s390372logstatsplain
-rw-r--r--netreport.1685logstatsplain
-rw-r--r--netreport.c1120logstatsplain
-rw-r--r--ppp-watch.8737logstatsplain
-rw-r--r--ppp-watch.c21659logstatsplain
-rw-r--r--process.c6562logstatsplain
-rw-r--r--process.h126logstatsplain
-rw-r--r--shvar.c10180logstatsplain
-rw-r--r--shvar.h3213logstatsplain
-rw-r--r--testd.c148logstatsplain
-rwxr-xr-xtestdinit775logstatsplain
-rw-r--r--usernetctl.81367logstatsplain
-rw-r--r--usernetctl.c4616logstatsplain
-rw-r--r--usleep.1556logstatsplain
-rw-r--r--usleep.c1475logstatsplain
value[0]); Newt::Component newtLabel(left,top,text) int left; int top; const char * text; void newtLabelSetText(co,text) Newt::Component co; const char * text; Newt::Component newtVerticalScrollbar(left,top,height,normalColorset,thumbColorset) int left; int top; int height; int normalColorset; int thumbColorset; void newtScrollbarSet(co,where,total) Newt::Component co; int where; int total; Newt::Component newtListbox(left,top,height,flags) int left; int top; int height; int flags; SV * newtListboxGetCurrent(co) Newt::Component co; CODE: RETVAL = SvREFCNT_inc(newtListboxGetCurrent(co)); OUTPUT: RETVAL void newtListboxSetCurrent(co,indice) Newt::Component co; int indice; void newtListboxSetWidth(co,width) Newt::Component co; int width; int newtListboxAddEntry(co,text,data) Newt::Component co; const char * text; SV * data; CODE: RETVAL = newtListboxAddEntry(co, text, data); OUTPUT: RETVAL Newt::Component newtTextboxReflowed(left,top,text,width,flexDown,flexUp,flags) int left; int top; char * text; int width; int flexDown; int flexUp; int flags; Newt::Component newtTextbox(left,top,width,height,flags) int left; int top; int width; int height; int flags; void newtTextboxSetText(co,text) Newt::Component co; const char * text; void newtTextboxSetHeight(co,height) Newt::Component co; int height; int newtTextboxGetNumLines(co) Newt::Component co; char * newtReflowText(text,width,flexDown,flexUp,actualWidth,actualHeight) char * text; int width; int flexDown; int flexUp; int * actualWidth; int * actualHeight; Newt::Component newtForm(vertBar,help,flags) Newt::Component vertBar; const char * help; int flags; void newtFormSetSize(co) Newt::Component co; Newt::Component newtFormGetCurrent(co) Newt::Component co; void newtFormSetBackground(co,color) Newt::Component co; int color; void newtFormSetCurrent(co,subco) Newt::Component co; Newt::Component subco; void newtFormAddComponent(form,co) Newt::Component form; Newt::Component co; void newtFormAddGrid(form,grid,recurse) Newt::Component form; Newt::Grid grid; int recurse; CODE: newtGridAddComponentsToForm(grid,form,recurse); void newtFormSetHeight(co,height) Newt::Component co; int height; void newtFormSetWidth(co,width) Newt::Component co; int width; Newt::Component newtRunForm(form) Newt::Component form; void newtDrawForm(form) Newt::Component form; Newt::Component newtEntry(left,top,initialValue,width,flag) int left; int top; const char * initialValue; int width; int flag; CODE: { char *result; RETVAL = newtEntry(left,top,initialValue,width,&result,flag); } OUTPUT: RETVAL void newtEntrySet(co,value,cursorAtEnd) Newt::Component co; const char * value; int cursorAtEnd; char * newtEntryGetValue(co) Newt::Component co; void newtFormDestroy(form) Newt::Component form; MODULE = Newt PACKAGE = Newt::Grid PREFIX = newt Newt::Grid newtCreateGrid(cols,rows) int cols; int rows; Newt::Grid HCloseStacked3(c1, c2, c3) Newt::Component c1; Newt::Component c2; Newt::Component c3; CODE: { RETVAL = newtGridHCloseStacked(NEWT_GRID_COMPONENT, c1, NEWT_GRID_COMPONENT, c2, NEWT_GRID_COMPONENT, c3); } OUTPUT: RETVAL Newt::Grid newtGridBasicWindow(text,middle,buttons) Newt::Component text; Newt::Grid middle; Newt::Grid buttons; Newt::Grid newtGridSimpleWindow(text,middle,buttons) Newt::Component text; Newt::Component middle; Newt::Grid buttons; void newtGridSetField(grid,col,row,type,val,padLeft,padTop,padRight,padBottom,anchor,flags) Newt::Grid grid; int col; int row; enum newtGridElement type; void * val; int padLeft; int padTop; int padRight; int padBottom; int anchor; int flags; void newtGridFree(grid,recurse) Newt::Grid grid; int recurse; void newtGridPlace(grid,left,top) Newt::Grid grid; int left; int top; void newtGridGetSize(grid) Newt::Grid grid; PPCODE: { int width; int height; newtGridGetSize(grid, &width, &height); PUSHs(sv_2mortal(newSViv(width))); PUSHs(sv_2mortal(newSViv(height))); } void newtGridWrappedWindow(grid,title) Newt::Grid grid; char * title; Newt::Grid newtButtonBar(button1, ...) char * button1; PPCODE: { static newtComponent p[11]; int i; EXTEND(SP, items + 1); #define a(i) (char *)SvPV(ST(i),PL_na) PUSHs(sv_setref_pv(sv_newmortal(), "Newt::Grid", newtButtonBar(items > 0 ? a( 0) : NULL, items > 0 ? &p[ 0] : NULL, items > 1 ? a( 1) : NULL, items > 1 ? &p[ 1] : NULL, items > 2 ? a( 2) : NULL, items > 2 ? &p[ 2] : NULL, items > 3 ? a( 3) : NULL, items > 3 ? &p[ 3] : NULL, items > 4 ? a( 4) : NULL, items > 4 ? &p[ 4] : NULL, items > 5 ? a( 5) : NULL, items > 5 ? &p[ 5] : NULL, items > 6 ? a( 6) : NULL, items > 6 ? &p[ 6] : NULL, items > 7 ? a( 7) : NULL, items > 7 ? &p[ 7] : NULL, items > 8 ? a( 8) : NULL, items > 8 ? &p[ 8] : NULL, items > 9 ? a( 9) : NULL, items > 9 ? &p[ 9] : NULL, items > 10 ? a(10) : NULL, items > 10 ? &p[10] : NULL, NULL))); #undef a for (i = 0; i < items; i++) PUSHs(sv_setref_pv(sv_newmortal(), "Newt::Component", p[i])); }