Changeset 41811af in mainline for uspace/srv/hid/fb/fb.c
- Timestamp:
- 2011-06-10T10:14:26Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ab547063
- Parents:
- 9536e6e (diff), 390d80d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/fb/fb.c
r9536e6e r41811af 59 59 #include <byteorder.h> 60 60 #include <io/screenbuffer.h> 61 62 61 #include "font-8x16.h" 63 62 #include "fb.h" 64 63 #include "main.h" 65 64 #include "ppm.h" 66 67 65 #include "pointer.xbm" 68 66 #include "pointer_mask.xbm" 67 68 // FIXME: remove this header 69 #include <kernel/ipc/ipc_methods.h> 69 70 70 71 #define DEFAULT_BGCOLOR 0xf0f0f0 … … 1620 1621 continue; 1621 1622 1622 switch (IPC_GET_IMETHOD(call)) { 1623 case IPC_M_PHONE_HUNGUP: 1623 if (!IPC_GET_IMETHOD(call)) { 1624 1624 client_connected = false; 1625 1625 … … 1630 1630 /* Exit thread */ 1631 1631 return; 1632 } 1632 1633 1634 switch (IPC_GET_IMETHOD(call)) { 1633 1635 case FB_PUTCHAR: 1634 1636 ch = IPC_GET_ARG1(call);
Note:
See TracChangeset
for help on using the changeset viewer.