Go to the source code of this file.
Functions | |
void | erbusy_init () |
void | erbusy_off (void) |
void | erbusy_blink (void) |
void | erbusy_on (void) |
void | erbusy_shutdown (void) |
Definition in file erbusy.h.
void erbusy_blink | ( | void | ) |
Definition at line 50 of file erbusy.c.
00051 { 00052 erbusy_request(ccBusyState_Blink); 00053 }
void erbusy_init | ( | ) |
Open communication channel with erbusy deamon counts on the fact that erbusy is running
Definition at line 31 of file erbusy.c.
00032 { 00033 CL_IPCPRINTF("entry"); 00034 erIpcStartClient(ER_BUSYD_CHANNEL, &erbusyChannel); 00035 }
void erbusy_off | ( | void | ) |
request from contentlister
Definition at line 45 of file erbusy.c.
00046 { 00047 erbusy_request(ccBusyState_Off); 00048 }
void erbusy_on | ( | void | ) |
Definition at line 55 of file erbusy.c.
00056 { 00057 erbusy_request(ccBusyState_On); 00058 }
void erbusy_shutdown | ( | void | ) |
Definition at line 60 of file erbusy.c.
00061 { 00062 erbusy_request(ccBusyState_Shutdown); 00063 }