[haiku-commits] haiku: hrev54887 - docs/user/storage

  • From: Adrien Destugues <pulkomandy@xxxxxxxxx>
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Wed, 13 Jan 2021 06:58:02 -0500 (EST)

hrev54887 adds 1 changeset to branch 'master'
old head: 2aa5a0353de1a64683667938553cd01dc8706ddc
new head: 0e061f0903ef57f6877aa4695a651425bf9c2e33
overview: 
https://git.haiku-os.org/haiku/log/?qt=range&q=0e061f0903ef+%5E2aa5a0353de1

----------------------------------------------------------------------------

0e061f0903ef: FindDirectory docs: clarify where the functions are located
  
  Only the C++ interface is in libbe. The C functions as well as the new
  find_path functions are all in libroot.
  
  Fixes #16749

               [ Adrien Destugues <adrien.destugues@xxxxxxxxxxxxxxxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev54887
Commit:      0e061f0903ef57f6877aa4695a651425bf9c2e33
URL:         https://git.haiku-os.org/haiku/commit/?id=0e061f0903ef
Author:      Adrien Destugues <adrien.destugues@xxxxxxxxxxxxxxxxxxxxx>
Date:        Wed Jan 13 11:47:28 2021 UTC

Ticket:      https://dev.haiku-os.org/ticket/16749

----------------------------------------------------------------------------

1 file changed, 8 insertions(+), 1 deletion(-)
docs/user/storage/FindDirectory.dox | 9 ++++++++-

----------------------------------------------------------------------------

diff --git a/docs/user/storage/FindDirectory.dox 
b/docs/user/storage/FindDirectory.dox
index 3f9c760b90..1ba33a7b3f 100644
--- a/docs/user/storage/FindDirectory.dox
+++ b/docs/user/storage/FindDirectory.dox
@@ -16,7 +16,6 @@
 /*!
        \file FindDirectory.h
        \ingroup storage
-       \ingroup libbe
        \brief Provides the find_directory(), find_path(), find_paths() 
functions
               as well as the \c directory_which constants.
 
@@ -1203,6 +1202,7 @@
 /*!
        \fn status_t find_directory(directory_which which, dev_t volume,
                bool createIt, char* pathString, int32 length)
+       \ingroup libroot
        \brief C interface to find_directory
 
        Fills up to \a length characters of \a pathString with the path to \a 
which
@@ -1216,6 +1216,7 @@
 /*!
        \fn status_t find_directory(directory_which which, BPath* path, bool 
createIt,
                BVolume* volume)
+       \ingroup libbe
        \brief C++ interface to find_directory
 
        Set \a path to \a which on \a volume.
@@ -1228,6 +1229,7 @@
        \fn status_t find_path(const void* codePointer,
                path_base_directory baseDirectory, const char* subPath,
                char* pathBuffer, size_t bufferSize)
+       \ingroup libroot
        \brief Retrieves a path in the file system layout based on a loaded 
image
               file.
 
@@ -1272,6 +1274,7 @@
        \fn status_t find_path_etc(const void* codePointer, const char* 
dependency,
                const char* architecture, path_base_directory baseDirectory,
                const char* subPath, uint32 flags, char* pathBuffer, size_t 
bufferSize)
+       \ingroup libroot
        \brief Retrieves a path in the file system layout based on a loaded 
image
               file.
 
@@ -1337,6 +1340,7 @@
        \fn status_t find_path_for_path(const char* path,
                path_base_directory baseDirectory, const char* subPath,
                char* pathBuffer, size_t bufferSize)
+       \ingroup libroot
        \brief Retrieves a path in the file system layout based on a given path.
 
        Based on the given path \a path the function evaluates \a 
baseDirectory. In
@@ -1376,6 +1380,7 @@
                const char* dependency, const char* architecture,
                path_base_directory baseDirectory, const char* subPath, uint32 
flags,
                char* pathBuffer, size_t bufferSize)
+       \ingroup libroot
        \brief Retrieves a path in the file system layout based on a given path.
 
        Based on the given path \a path the function evaluates \a 
baseDirectory. In
@@ -1435,6 +1440,7 @@
 /*!
        \fn status_t find_paths(path_base_directory baseDirectory,
                const char* subPath, char*** _paths, size_t* _pathCount)
+       \ingroup libroot
        \brief Retrieves a list of paths in the file system layout.
 
        For each installation location -- in the order most specific to most
@@ -1472,6 +1478,7 @@
        \fn status_t find_paths_etc(const char* architecture,
                path_base_directory baseDirectory, const char* subPath, uint32 
flags,
                char*** _paths, size_t* _pathCount)
+       \ingroup libroot
        \brief Retrieves a list of paths in the file system layout.
 
        For each installation location -- in the order most specific to most


Other related posts:

  • » [haiku-commits] haiku: hrev54887 - docs/user/storage - Adrien Destugues