netatalk  4.5.0
Free and Open Source Apple Filing Protocol (AFP) Server
Loading...
Searching...
No Matches
sl_backends.h
Go to the documentation of this file.
1/*
2 Declarations for pluggable Spotlight search backend ops instances.
3 Include this header wherever a backend ops pointer is needed.
4*/
5
6#ifndef SPOTLIGHT_BACKENDS_H
7#define SPOTLIGHT_BACKENDS_H
8
9#include <atalk/spotlight.h>
10
11#ifdef SPOTLIGHT_BACKEND_CNID
12extern const sl_backend_ops sl_cnid_ops;
13#endif
14
15#ifdef SPOTLIGHT_BACKEND_LOCALSEARCH
17#endif
18
19#ifdef SPOTLIGHT_BACKEND_XAPIAN
20extern const sl_backend_ops sl_xapian_ops;
21#endif
22
23#endif /* SPOTLIGHT_BACKENDS_H */
const sl_backend_ops sl_cnid_ops
Definition sl_cnid.c:533
const sl_backend_ops sl_localsearch_ops
Definition sl_localsearch.c:429
const sl_backend_ops sl_xapian_ops
Definition sl_xapian.c:604
Definition spotlight.h:118