
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 49 of file erbusy.cpp.
00050 { 00051 erbusy_request(ccBusyState_Blink); 00052 }

| void erbusy_init | ( | ) |
Open communication channel with erbusy deamon counts on the fact that erbusy is running
Definition at line 30 of file erbusy.cpp.
00031 { 00032 BR_IPCPRINTF("entry"); 00033 erIpcStartClient(ER_BUSYD_CHANNEL, &erbusyChannel); 00034 }

| void erbusy_off | ( | void | ) |
request from contentlister
Definition at line 44 of file erbusy.cpp.
00045 { 00046 erbusy_request(ccBusyState_Off); 00047 }

| void erbusy_on | ( | void | ) |
Definition at line 54 of file erbusy.cpp.
00055 { 00056 erbusy_request(ccBusyState_On); 00057 }

| void erbusy_shutdown | ( | void | ) |
Definition at line 59 of file erbusy.cpp.
00060 { 00061 erbusy_request(ccBusyState_Shutdown); 00062 }

1.5.6