Changeset 00aece0 in mainline for uspace/lib/nic/include/nic_ev.h
- Timestamp:
- 2012-02-18T16:47:38Z (14 years ago)
- 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. - File:
-
- 1 moved
-
uspace/lib/nic/include/nic_ev.h (moved) (moved from uspace/srv/hid/console/gcons.h ) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/nic/include/nic_ev.h
rbd5f3b7 r00aece0 1 1 /* 2 * Copyright (c) 20 06 Ondrej Palkovsky2 * Copyright (c) 2011 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup console 29 /** 30 * @addtogroup libnic 30 31 * @{ 31 32 */ 32 /** @file 33 /** 34 * @file 35 * @brief Prototypes of default DDF NIC interface methods implementations 33 36 */ 34 37 35 #ifndef GCONS_H_36 #define GCONS_H_38 #ifndef NIC_EV_H__ 39 #define NIC_EV_H__ 37 40 41 #include <async.h> 42 #include <nic/nic.h> 38 43 #include <sys/types.h> 39 44 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); 45 extern int nic_ev_addr_changed(async_sess_t *, const nic_address_t *); 46 extern int nic_ev_device_state(async_sess_t *, sysarg_t); 47 extern int nic_ev_received(async_sess_t *, void *, size_t); 52 48 53 49 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
