"Fossies" - the Fresh Open Source Software Archive

Member "unipkg-0.6.5/manmachine.h" (16 Dec 2005, 1459 Bytes) of package /linux/privat/old/unipkg-0.6.5.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file.

    1 /******************************************************************************\
    2 *                                                                              *
    3 * UniPKG (c) iSteve <isteve@bofh.cz>, 2005                                     *
    4 *                                                                              *
    5 * Universal PacKaGer.                                                          *
    6 * Licensed under GNU/GPL - if you don't like the software, fix it!             *
    7 *                                                                              *
    8 \******************************************************************************/
    9 
   10 #define TALKOFFSET  40
   11 
   12 #define M_LEFT      0
   13 #define M_CENTER    1
   14 #define M_RIGHT     2
   15 
   16 #define M_CUT       0
   17 #define M_OVERFLOW  1
   18 
   19 #define M_NOBORDERS 0
   20 #define M_BORDERS   1
   21 
   22 void siginthandle(int sig);
   23 
   24 void progressinfo(char *action);
   25 void progressfinish(char *message, ...);
   26 int yesnoquestion(char *question, char specre);
   27 void whichcollide(pkginfo toinst);
   28 void whichcollideexceptknown(pkginfo toinst, pkginfo colliding);
   29 
   30 void clearline(void);
   31 
   32 void printprogressbar(char lbracket, char rbracket, char loopfirst, char looplater, char border, int newline, int value, int barwidth);
   33 void printpinfo(pkginfo pinfo);
   34 void printfilemember(char *pname, char *fname);
   35 void printseparator(char cloop, char c, int count, ...);
   36 void printcolumns(char csplit, int corners, int align, int padding, int overflow,  int count,...);
   37