Ignore:
File:
1 edited

Legend:

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

    r9934f7d rffa2c8ef  
    5959#include <byteorder.h>
    6060#include <io/screenbuffer.h>
     61
    6162#include "font-8x16.h"
    6263#include "fb.h"
    6364#include "main.h"
    6465#include "ppm.h"
     66
    6567#include "pointer.xbm"
    6668#include "pointer_mask.xbm"
    67 
    68 // FIXME: remove this header
    69 #include <kernel/ipc/ipc_methods.h>
    7069
    7170#define DEFAULT_BGCOLOR  0xf0f0f0
     
    15761575 *
    15771576 */
    1578 static void fb_client_connection(ipc_callid_t iid, ipc_call_t *icall,
    1579     void *arg)
     1577static void fb_client_connection(ipc_callid_t iid, ipc_call_t *icall)
    15801578{
    15811579        unsigned int vp = 0;
     
    16221620                        continue;
    16231621               
    1624                 if (!IPC_GET_IMETHOD(call)) {
     1622                switch (IPC_GET_IMETHOD(call)) {
     1623                case IPC_M_PHONE_HUNGUP:
    16251624                        client_connected = false;
    16261625                       
     
    16311630                        /* Exit thread */
    16321631                        return;
    1633                 }
    16341632               
    1635                 switch (IPC_GET_IMETHOD(call)) {
    16361633                case FB_PUTCHAR:
    16371634                        ch = IPC_GET_ARG1(call);
Note: See TracChangeset for help on using the changeset viewer.