Changes in uspace/srv/hid/fb/ega.c [79ae36dd:ffa2c8ef] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/fb/ega.c
r79ae36dd rffa2c8ef 52 52 #include <io/screenbuffer.h> 53 53 #include <sys/types.h> 54 54 55 #include "ega.h" 55 56 #include "main.h" 56 57 // FIXME: remove this header58 #include <kernel/ipc/ipc_methods.h>59 57 60 58 #define MAX_SAVED_SCREENS 256 … … 293 291 int retval; 294 292 295 if (!IPC_GET_IMETHOD(call)) { 293 switch (IPC_GET_IMETHOD(call)) { 294 case IPC_M_PHONE_HUNGUP: 296 295 client_connected = 0; 297 296 async_answer_0(callid, EOK); … … 299 298 /* Exit thread */ 300 299 return; 301 }302 303 switch (IPC_GET_IMETHOD(call)) {304 300 case IPC_M_SHARE_OUT: 305 301 /* We accept one area for data interchange */
Note:
See TracChangeset
for help on using the changeset viewer.