mirror of
https://github.com/flatpak/flatpak.git
synced 2026-03-11 19:51:27 -04:00
lib: Add some missing docs
This commit is contained in:
@@ -249,6 +249,16 @@ xdg_app_ref_format_ref (XdgAppRef *self)
|
||||
priv->arch);
|
||||
}
|
||||
|
||||
/**
|
||||
* xdg_app_ref_parse
|
||||
* @ref: A string ref name, such as "app/org.test.App/86_64/master"
|
||||
* @error: return location for a #GError
|
||||
*
|
||||
* Tries to parse a full ref name and return a #XdgAppRef (without a
|
||||
* commit set) or fail if the ref is invalid somehow.
|
||||
*
|
||||
* Returns: (transfer full): an #XdgAppRef
|
||||
*/
|
||||
XdgAppRef *
|
||||
xdg_app_ref_parse (const char *ref, GError **error)
|
||||
{
|
||||
|
||||
@@ -129,6 +129,16 @@ xdg_app_remote_get_name (XdgAppRemote *self)
|
||||
return priv->name;
|
||||
}
|
||||
|
||||
/**
|
||||
* xdg_app_remote_get_appstream_dir
|
||||
* @self: a #XdgAppRemote
|
||||
* @arch: (nullable): which architecture to fetch (default: current architecture)
|
||||
*
|
||||
* Returns the directory where this remote will store locally cached
|
||||
* appstream information for the specified @arch.
|
||||
*
|
||||
* Returns: (transfer full): an #GFile
|
||||
**/
|
||||
GFile *
|
||||
xdg_app_remote_get_appstream_dir (XdgAppRemote *self,
|
||||
const char *arch)
|
||||
@@ -145,6 +155,16 @@ xdg_app_remote_get_appstream_dir (XdgAppRemote *self,
|
||||
subdir);
|
||||
}
|
||||
|
||||
/**
|
||||
* xdg_app_remote_get_appstream_timestamp
|
||||
* @self: a #XdgAppRemote
|
||||
* @arch: (nullable): which architecture to fetch (default: current architecture)
|
||||
*
|
||||
* Returns the timestamp file that will be updated whenever the appstream information
|
||||
* has been updated (or tried to update) for the specified @arch.
|
||||
*
|
||||
* Returns: (transfer full): an #GFile
|
||||
**/
|
||||
GFile *
|
||||
xdg_app_remote_get_appstream_timestamp (XdgAppRemote *self,
|
||||
const char *arch)
|
||||
|
||||
Reference in New Issue
Block a user