Changes in uspace/srv/hid/fb/ega.c [c6f08726:79ae36dd] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/fb/ega.c
rc6f08726 r79ae36dd 56 56 57 57 // FIXME: remove this header 58 #include < abi/ipc/methods.h>58 #include <kernel/ipc/ipc_methods.h> 59 59 60 60 #define MAX_SAVED_SCREENS 256 … … 256 256 } 257 257 258 static void ega_client_connection(ipc_callid_t iid, ipc_call_t *icall, 259 void *arg) 258 static void ega_client_connection(ipc_callid_t iid, ipc_call_t *icall) 260 259 { 261 260 size_t intersize = 0; … … 414 413 retval = 0; 415 414 break; 416 case FB_VP_DRAW_ IMGMAP:415 case FB_VP_DRAW_PIXMAP: 417 416 scr = IPC_GET_ARG2(call); 418 417 retval = print_screen(scr); 419 418 break; 420 case FB_VP2 IMGMAP:419 case FB_VP2PIXMAP: 421 420 retval = save_screen(); 422 421 break; 423 case FB_DROP_ IMGMAP:422 case FB_DROP_PIXMAP: 424 423 scr = IPC_GET_ARG1(call); 425 424
Note:
See TracChangeset
for help on using the changeset viewer.