Changes in uspace/srv/hid/fb/fb.c [9934f7d:ffa2c8ef] in mainline
- File:
-
- 1 edited
-
uspace/srv/hid/fb/fb.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/fb/fb.c
r9934f7d rffa2c8ef 59 59 #include <byteorder.h> 60 60 #include <io/screenbuffer.h> 61 61 62 #include "font-8x16.h" 62 63 #include "fb.h" 63 64 #include "main.h" 64 65 #include "ppm.h" 66 65 67 #include "pointer.xbm" 66 68 #include "pointer_mask.xbm" 67 68 // FIXME: remove this header69 #include <kernel/ipc/ipc_methods.h>70 69 71 70 #define DEFAULT_BGCOLOR 0xf0f0f0 … … 1576 1575 * 1577 1576 */ 1578 static void fb_client_connection(ipc_callid_t iid, ipc_call_t *icall, 1579 void *arg) 1577 static void fb_client_connection(ipc_callid_t iid, ipc_call_t *icall) 1580 1578 { 1581 1579 unsigned int vp = 0; … … 1622 1620 continue; 1623 1621 1624 if (!IPC_GET_IMETHOD(call)) { 1622 switch (IPC_GET_IMETHOD(call)) { 1623 case IPC_M_PHONE_HUNGUP: 1625 1624 client_connected = false; 1626 1625 … … 1631 1630 /* Exit thread */ 1632 1631 return; 1633 }1634 1632 1635 switch (IPC_GET_IMETHOD(call)) {1636 1633 case FB_PUTCHAR: 1637 1634 ch = IPC_GET_ARG1(call);
Note:
See TracChangeset
for help on using the changeset viewer.
