Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/fb/ega.c

    r79ae36dd rc6f08726  
    5656
    5757// FIXME: remove this header
    58 #include <kernel/ipc/ipc_methods.h>
     58#include <abi/ipc/methods.h>
    5959
    6060#define MAX_SAVED_SCREENS  256
     
    256256}
    257257
    258 static void ega_client_connection(ipc_callid_t iid, ipc_call_t *icall)
     258static void ega_client_connection(ipc_callid_t iid, ipc_call_t *icall,
     259    void *arg)
    259260{
    260261        size_t intersize = 0;
     
    413414                        retval = 0;
    414415                        break;
    415                 case FB_VP_DRAW_PIXMAP:
     416                case FB_VP_DRAW_IMGMAP:
    416417                        scr = IPC_GET_ARG2(call);
    417418                        retval = print_screen(scr);
    418419                        break;
    419                 case FB_VP2PIXMAP:
     420                case FB_VP2IMGMAP:
    420421                        retval = save_screen();
    421422                        break;
    422                 case FB_DROP_PIXMAP:
     423                case FB_DROP_IMGMAP:
    423424                        scr = IPC_GET_ARG1(call);
    424425                       
Note: See TracChangeset for help on using the changeset viewer.