Rev 4482 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 4482 | Rev 4644 | ||
---|---|---|---|
Line 67... | Line 67... | ||
67 | void console_cursor_visibility(int phone, bool show) |
67 | void console_cursor_visibility(int phone, bool show) |
68 | { |
68 | { |
69 | async_msg_1(phone, CONSOLE_CURSOR_VISIBILITY, show != false); |
69 | async_msg_1(phone, CONSOLE_CURSOR_VISIBILITY, show != false); |
70 | } |
70 | } |
71 | 71 | ||
- | 72 | int console_get_color_cap(int phone, int *ccap) |
|
- | 73 | { |
|
- | 74 | ipcarg_t ccap_tmp; |
|
- | 75 | int rc; |
|
- | 76 | ||
- | 77 | rc = async_req_0_1(phone, CONSOLE_GET_COLOR_CAP, &ccap_tmp); |
|
- | 78 | *ccap = ccap_tmp; |
|
- | 79 | ||
- | 80 | return rc; |
|
- | 81 | } |
|
- | 82 | ||
72 | void console_kcon_enable(int phone) |
83 | void console_kcon_enable(int phone) |
73 | { |
84 | { |
74 | async_msg_0(phone, CONSOLE_KCON_ENABLE); |
85 | async_msg_0(phone, CONSOLE_KCON_ENABLE); |
75 | } |
86 | } |
76 | 87 |