desktop: Additional note on open_object()'s behavior

This commit is contained in:
Ignacio R. Morelle 2014-02-12 03:30:20 -03:00
parent e7d19b4d6d
commit 1ba45ce69a

View file

@ -37,6 +37,16 @@ namespace desktop {
* If the content pointed to by @a path_or_url cannot be trusted, you should
* either refrain from using this function, or warn the user before calling
* this function.
*
* @note Currently, only X11, Apple OS X, and Microsoft Windows are supported.
* Using this function on unsupported platforms will result in an error
* message logged in stderr.
*
* @return @a true on success, @a false otherwise. Failure to perform the
* platform call means either that we do not currently support the
* running platform, the child process exited with a non-zero status,
* or something else went wrong. Thus, a value of @a true does not
* truly guarantee success -- take it with a grain of salt.
*/
bool open_object(const std::string& path_or_url);