Counter
[Utilities]
Detailed Description
- Used to notify the application that a step in the loading, saving or processing operation has been performed.
- See im_counter.h
Typedefs | |
| typedef int(* | imCounterCallback )(int counter, void *user_data, const char *text, int progress) |
Functions | |
| imCounterCallback | imCounterSetCallback (void *user_data, imCounterCallback counter_func) |
| int | imCounterBegin (const char *title) |
| void | imCounterEnd (int counter) |
| int | imCounterInc (int counter) |
| int | imCounterIncTo (int counter, int count) |
| void | imCounterTotal (int counter, int total, const char *message) |
Typedef Documentation
|
|
Counter callback, informs the progress of the operation to the client. |
Function Documentation
|
||||||||||||
|
Changes the counter callback. Returns old callback. |
|
|
Begins a new count, or a partial-count in a sequence. |
|
|
Ends a count, or a partial-count in a sequence. |
|
|
Increments a count. Must set the total first. |
|
||||||||||||
|
Set a specific count. Must set the total first. |
|
||||||||||||||||
|
Sets the total increments of a count. |