Changeset 12f9f0d0 in mainline for uspace/lib/c/include
- Timestamp:
- 2011-08-17T13:39:53Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e280857
- Parents:
- 45058baa
- Location:
- uspace/lib/c/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/ipc/loc.h
r45058baa r12f9f0d0 57 57 LOC_SERVICE_GET_NAME, 58 58 LOC_NAMESPACE_GET_ID, 59 LOC_CALLBACK_CREATE, 59 60 LOC_CATEGORY_GET_ID, 60 61 LOC_CATEGORY_GET_SVCS, … … 68 69 LOC_GET_SERVICES 69 70 } loc_request_t; 71 72 typedef enum { 73 LOC_EVENT_CAT_CHANGE = IPC_FIRST_USER_METHOD 74 } loc_event_t; 70 75 71 76 /** Ports provided by location service. -
uspace/lib/c/include/loc.h
r45058baa r12f9f0d0 40 40 #include <bool.h> 41 41 42 typedef void (*loc_cat_change_cb_t)(void); 43 42 44 extern async_exch_t *loc_exchange_begin_blocking(loc_interface_t); 43 45 extern async_exch_t *loc_exchange_begin(loc_interface_t); … … 73 75 extern size_t loc_get_services(service_id_t, loc_sdesc_t **); 74 76 extern int loc_get_categories(category_id_t **, size_t *); 77 extern int loc_register_cat_change_cb(loc_cat_change_cb_t); 75 78 76 79
Note:
See TracChangeset
for help on using the changeset viewer.