Changeset 55edba0 in mainline
- Timestamp:
- 2013-06-11T14:20:41Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f81498d
- Parents:
- 445e7c0
- Location:
- uspace
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/edit/search_impl.h
r445e7c0 r55edba0 40 40 41 41 /** Search state */ 42 typedefstruct search {42 struct search { 43 43 /* Note: This structure is opaque for the user. */ 44 44 … … 49 49 void *client_data; 50 50 search_ops_t ops; 51 } search_t;51 }; 52 52 53 53 #endif -
uspace/app/edit/sheet_impl.h
r445e7c0 r55edba0 40 40 41 41 /** Sheet */ 42 typedefstruct sheet {42 struct sheet { 43 43 /* Note: This structure is opaque for the user. */ 44 44 … … 48 48 49 49 list_t tags; 50 } sheet_t;50 }; 51 51 52 52 #endif -
uspace/lib/c/include/bd_srv.h
r445e7c0 r55edba0 57 57 } bd_srv_t; 58 58 59 typedefstruct bd_ops {59 struct bd_ops { 60 60 int (*open)(bd_srvs_t *, bd_srv_t *); 61 61 int (*close)(bd_srv_t *); … … 65 65 int (*get_block_size)(bd_srv_t *, size_t *); 66 66 int (*get_num_blocks)(bd_srv_t *, aoff64_t *); 67 } bd_ops_t;67 }; 68 68 69 69 extern void bd_srvs_init(bd_srvs_t *); -
uspace/lib/c/include/io/con_srv.h
r445e7c0 r55edba0 66 66 } con_srv_t; 67 67 68 typedefstruct con_ops {68 struct con_ops { 69 69 int (*open)(con_srvs_t *, con_srv_t *); 70 70 int (*close)(con_srv_t *); … … 83 83 void (*set_cursor_visibility)(con_srv_t *, bool); 84 84 int (*get_event)(con_srv_t *, cons_event_t *); 85 } con_ops_t;85 }; 86 86 87 87 extern void con_srvs_init(con_srvs_t *); -
uspace/lib/draw/drawctx.h
r445e7c0 r55edba0 47 47 #include "font.h" 48 48 49 typedefstruct drawctx {49 struct drawctx { 50 50 link_t link; 51 51 list_t list; … … 62 62 sysarg_t clip_width; 63 63 sysarg_t clip_height; 64 } drawctx_t;64 }; 65 65 66 66 extern void drawctx_init(drawctx_t *, surface_t *); -
uspace/lib/gui/connection.h
r445e7c0 r55edba0 38 38 39 39 #include <sys/types.h> 40 41 struct widget; 42 typedef struct widget widget_t; 40 #include "widget.h" 43 41 44 42 typedef sysarg_t signal_t; -
uspace/lib/gui/widget.h
r445e7c0 r55edba0 51 51 * any derived widget structure. 52 52 */ 53 typedefstruct widget {53 struct widget { 54 54 link_t link; 55 55 widget_t *parent; /**< Parent widget of this widget. NULL for root widget. */ … … 116 116 * also acquire or release mouse grab. */ 117 117 void (*handle_position_event)(widget_t *, pos_event_t); 118 } widget_t;118 }; 119 119 120 120 /* -
uspace/lib/gui/window.h
r445e7c0 r55edba0 47 47 #include "widget.h" 48 48 49 typedefstruct window {49 struct window { 50 50 bool is_main; /**< True for the main window of the application. */ 51 51 bool is_decorated; /**< True if the window decorations should be rendered. */ … … 60 60 fibril_mutex_t guard; /**< Mutex guarding window surface. */ 61 61 surface_t *surface; /**< Window surface shared with compositor. */ 62 } window_t;62 }; 63 63 64 64 /** -
uspace/srv/hid/isdv4_tablet/isdv4.h
r445e7c0 r55edba0 76 76 } isdv4_source_type_t; 77 77 78 typedefstruct isdv4_event {78 struct isdv4_event { 79 79 isdv4_event_type_t type; 80 80 isdv4_source_type_t source; … … 83 83 unsigned int pressure; 84 84 unsigned int button; 85 } isdv4_event_t;85 }; 86 86 87 87 extern int isdv4_init(isdv4_state_t *, async_sess_t *, isdv4_event_fn);
Note:
See TracChangeset
for help on using the changeset viewer.