Changeset 00aece0 in mainline for uspace/lib/nic/include/nic_ev.h


Ignore:
Timestamp:
2012-02-18T16:47:38Z (14 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
4449c6c
Parents:
bd5f3b7 (diff), f943dd3 (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.
Message:

Merge mainline changes.

File:
1 moved

Legend:

Unmodified
Added
Removed
  • uspace/lib/nic/include/nic_ev.h

    rbd5f3b7 r00aece0  
    11/*
    2  * Copyright (c) 2006 Ondrej Palkovsky
     2 * Copyright (c) 2011 Jiri Svoboda
    33 * All rights reserved.
    44 *
     
    2727 */
    2828
    29 /** @addtogroup console
     29/**
     30 * @addtogroup libnic
    3031 * @{
    3132 */
    32 /** @file
     33/**
     34 * @file
     35 * @brief Prototypes of default DDF NIC interface methods implementations
    3336 */
    3437
    35 #ifndef GCONS_H_
    36 #define GCONS_H_
     38#ifndef NIC_EV_H__
     39#define NIC_EV_H__
    3740
     41#include <async.h>
     42#include <nic/nic.h>
    3843#include <sys/types.h>
    3944
    40 void gcons_init(int);
    41 
    42 void gcons_redraw_console(void);
    43 void gcons_change_console(size_t);
    44 void gcons_notify_char(size_t);
    45 void gcons_in_kernel(void);
    46 
    47 void gcons_notify_connect(size_t);
    48 void gcons_notify_disconnect(size_t);
    49 
    50 void gcons_mouse_move(ssize_t, ssize_t);
    51 int gcons_mouse_btn(bool state);
     45extern int nic_ev_addr_changed(async_sess_t *, const nic_address_t *);
     46extern int nic_ev_device_state(async_sess_t *, sysarg_t);
     47extern int nic_ev_received(async_sess_t *, void *, size_t);
    5248
    5349#endif
Note: See TracChangeset for help on using the changeset viewer.