abc-master
|
Go to the source code of this file.
Data Structures | |
struct | ProgressBarStruct |
DECLARATIONS ///. More... | |
Functions | |
static void | Extra_ProgressBarShow (ProgressBar *p, char *pString) |
static void | Extra_ProgressBarClean (ProgressBar *p) |
ProgressBar * | Extra_ProgressBarStart (FILE *pFile, int nItemsTotal) |
FUNCTION DEFINITIONS ///. More... | |
void | Extra_ProgressBarUpdate_int (ProgressBar *p, int nItemsCur, char *pString) |
void | Extra_ProgressBarStop (ProgressBar *p) |
|
static |
Function*************************************************************
Synopsis [Cleans the progress bar before quitting.]
Description []
SideEffects []
SeeAlso []
Definition at line 166 of file extraUtilProgress.c.
|
static |
Function*************************************************************
Synopsis [Prints the progress bar of the given size.]
Description []
SideEffects []
SeeAlso []
Definition at line 136 of file extraUtilProgress.c.
ProgressBar* Extra_ProgressBarStart | ( | FILE * | pFile, |
int | nItemsTotal | ||
) |
FUNCTION DEFINITIONS ///.
Function*************************************************************
Synopsis [Starts the progress bar.]
Description [The first parameter is the output stream (pFile), where the progress is printed. The current printing position should be the first one on the given line. The second parameters is the total number of items that correspond to 100% position of the progress bar.]
SideEffects []
SeeAlso []
Definition at line 62 of file extraUtilProgress.c.
void Extra_ProgressBarStop | ( | ProgressBar * | p | ) |
Function*************************************************************
Synopsis [Stops the progress bar.]
Description []
SideEffects []
SeeAlso []
Definition at line 118 of file extraUtilProgress.c.
void Extra_ProgressBarUpdate_int | ( | ProgressBar * | p, |
int | nItemsCur, | ||
char * | pString | ||
) |
Function*************************************************************
Synopsis [Updates the progress bar.]
Description []
SideEffects []
SeeAlso []
Definition at line 88 of file extraUtilProgress.c.