SCCheckStatus

C Specification

#include <revolution/sc.h>

u32 SCCheckStatus(void);

Arguments

None.

Return Values

One of the SC_STATUS_* values.

Description

This functions checks the status of background processes while the SC library is executing or checks the result of the last background process that executed.

The return value of this function is only useful after calling SCInit() or SCFlush*().

Return Values State or result
SC_STATUS_OK The last executed background process succeeded.
No background process is currently executing.
SC_STATUS_BUSY A background process is currently executing.
SC_STATUS_ERROR The last executed background process failed.
No background process is currently executing.

See Also

SCInit
SCFlush*

Revision History

05/29/2006 Initial version.