Changeset 8ff0bd2 in mainline for uspace/srv/hid/fb/ega.c
- Timestamp:
- 2011-09-04T11:30:58Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 03bc76a
- Parents:
- d2c67e7 (diff), deac215e (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/ega.c
rd2c67e7 r8ff0bd2 56 56 57 57 // FIXME: remove this header 58 #include < kernel/ipc/ipc_methods.h>58 #include <abi/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) 258 static void ega_client_connection(ipc_callid_t iid, ipc_call_t *icall, 259 void *arg) 259 260 { 260 261 size_t intersize = 0; … … 413 414 retval = 0; 414 415 break; 415 case FB_VP_DRAW_ PIXMAP:416 case FB_VP_DRAW_IMGMAP: 416 417 scr = IPC_GET_ARG2(call); 417 418 retval = print_screen(scr); 418 419 break; 419 case FB_VP2 PIXMAP:420 case FB_VP2IMGMAP: 420 421 retval = save_screen(); 421 422 break; 422 case FB_DROP_ PIXMAP:423 case FB_DROP_IMGMAP: 423 424 scr = IPC_GET_ARG1(call); 424 425
Note:
See TracChangeset
for help on using the changeset viewer.