Shared store code. More...
#include "config.h"#include <stdbool.h>#include <stdio.h>#include "mutt/lib.h"#include "config/lib.h"#include "lib.h"
Include dependency graph for store.c:Go to the source code of this file.
Macros | |
| #define | STORE_BACKEND(name) |
Functions | |
| struct Slist * | store_backend_list (void) |
| Get a list of backend names. | |
| const struct StoreOps * | store_get_backend_ops (const char *str) |
| Get the API functions for an store backend. | |
| bool | store_is_valid_backend (const char *str) |
| Is the string a valid Store backend. | |
Variables | |
| static const struct StoreOps * | StoreOps [] |
| Backend implementations. | |
Shared store code.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.
Definition in file store.c.
| #define STORE_BACKEND | ( | name | ) |
| struct Slist * store_backend_list | ( | void | ) |
Get a list of backend names.
| ptr | List of names |
Definition at line 85 of file store.c.
Here is the call graph for this function:
Here is the caller graph for this function:| const struct StoreOps * store_get_backend_ops | ( | const char * | str | ) |
Get the API functions for an store backend.
| str | Name of the Store |
| ptr | Set of function pointers |
Definition at line 104 of file store.c.
Here is the call graph for this function:
Here is the caller graph for this function:| bool store_is_valid_backend | ( | const char * | str | ) |
Is the string a valid Store backend.
| str | Store name |
| true | s is recognized as a valid backend |
| false | otherwise |
Definition at line 126 of file store.c.
Here is the call graph for this function:
Here is the caller graph for this function:
|
static |
Backend implementations.
Definition at line 51 of file store.c.