Welcome to mirror list, hosted at ThFree Co, Russian Federation.

file_indexer.h « space_file « editors « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c47537db8157aac91a5982f2ac18f6d70c7f3a65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* SPDX-License-Identifier: GPL-2.0-or-later */

/** \file
 * \ingroup edfile
 */
#pragma once

#include "ED_file_indexer.h"

#ifdef __cplusplus
extern "C" {
#endif

/**
 * Default indexer to use when listing files. The implementation is a no-operation indexing. When
 * set it won't use indexing. It is added to increase the code clarity.
 */
extern const FileIndexerType file_indexer_noop;

#ifdef __cplusplus
}
#endif