Sack Library Documentation
|
LOGICAL is_deadstart_complete();
a function true/false which indicates whether the root deadstart has been invoked already. If not, one should call InvokeDeadstart and MarkDeadstartComplete.
int main( ) { if( !is_deadstart_complete() ) { InvokeDeadstart(); MarkDeadstartComplete() } ... your code here .... return 0; // or some other appropriate return. }
Copyright (c) 2000+. All rights reserved.
|
What do you think about this topic? Send feedback!
|