#include "camtypes.h"
#include "csrstack.h"
#include "keypress.h"
#include "statline.h"
#include "progress.h"
Go to the source code of this file.
Defines | |
#define | new CAM_DEBUG_NEW |
#define | DELAY_THREAD 0 |
#define | DEBUG_OUTPUT 0 |
Functions | |
DECLARE_SOURCE ("$Revision: 1282 $") | |
BOOL | BeginSlowJob (INT32 finalcount, BOOL delay, String_64 *Description) |
BOOL | ContinueSlowJob (INT32 upto) |
void | EndSlowJob (void) |
void | SmashSlowJob (void) |
Variables | |
const INT32 | STARTDELAY = 333 |
|
Definition at line 136 of file progress.cpp. |
|
Definition at line 133 of file progress.cpp. |
|
Definition at line 122 of file progress.cpp. |
|
Definition at line 154 of file progress.cpp. 00156 { 00157 Progress::Start(delay, Description, finalcount); 00158 00159 return(TRUE); 00160 }
|
|
Definition at line 172 of file progress.cpp. 00173 { 00174 return(Progress::Update(upto)); 00175 }
|
|
|
|
Definition at line 187 of file progress.cpp. 00188 { 00189 Progress::Stop(); 00190 }
|
|
Definition at line 202 of file progress.cpp. 00203 { 00204 Progress::Smash(); 00205 }
|
|
Definition at line 142 of file progress.cpp. |