X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/59649246c9a98ceda4bffa85ed4bd01a3c48adab..75e8b2ae65722d849ef899616de7091286ec91f5:/include/simgrid/storage.h diff --git a/include/simgrid/storage.h b/include/simgrid/storage.h index 8336287350..36ba7c85e6 100644 --- a/include/simgrid/storage.h +++ b/include/simgrid/storage.h @@ -14,15 +14,15 @@ /* C interface */ SG_BEGIN_DECL -XBT_PUBLIC const char* sg_storage_get_name(sg_storage_t storage); +XBT_PUBLIC const char* sg_storage_get_name(const_sg_storage_t storage); XBT_PUBLIC sg_storage_t sg_storage_get_by_name(const char* name); -XBT_PUBLIC xbt_dict_t sg_storage_get_properties(sg_storage_t storage); +XBT_PUBLIC xbt_dict_t sg_storage_get_properties(const_sg_storage_t storage); XBT_PUBLIC void sg_storage_set_property_value(sg_storage_t storage, const char* name, const char* value); -XBT_PUBLIC const char* sg_storage_get_property_value(sg_storage_t storage, const char* name); +XBT_PUBLIC const char* sg_storage_get_property_value(const_sg_storage_t storage, const char* name); XBT_PUBLIC xbt_dynar_t sg_storages_as_dynar(); XBT_PUBLIC void sg_storage_set_data(sg_storage_t host, void* data); -XBT_PUBLIC void* sg_storage_get_data(sg_storage_t storage); -XBT_PUBLIC const char* sg_storage_get_host(sg_storage_t storage); +XBT_PUBLIC void* sg_storage_get_data(const_sg_storage_t storage); +XBT_PUBLIC const char* sg_storage_get_host(const_sg_storage_t storage); XBT_PUBLIC sg_size_t sg_storage_read(sg_storage_t storage, sg_size_t size); XBT_PUBLIC sg_size_t sg_storage_write(sg_storage_t storage, sg_size_t size);