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

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

/** \file
 * \ingroup bke
 */

#ifdef __cplusplus
extern "C" {
#endif

/**
 * \param path: The path to check against.
 * \return Success
 */
bool BKE_autoexec_match(const char *path);

#ifdef __cplusplus
}
#endif