Application :: progress - Display action progress
In order to display action progress, progress messages have to be sent from the action to the system output. The implementation of the progress function decides how progress will be visualized.
Implementation details
Application  :: progress ( odaba::String &sString, int64 iPosition64, int64 iMaximum64 )
The text passed in sString is used for displaying a title or preceding text in the progress message. iPosition64 and iMaximum64 are used to determine the percentage of work already done.
- sString - String value
- iPosition64
- Position in an area or file
The big position value usually refers to a relative position in an area or file.
- iMaximum64
- Maximum value
The maximum value contains the maximum number allowed (e.g. as position in a file or area).