Cleanup: Move `BKE_autoexec.h` to full Cpp header `BKE_autoexec.hh`.

This commit is contained in:
Bastien Montagne 2024-01-21 19:12:17 +01:00
parent b92443e1d9
commit bfe2e5a069
4 changed files with 3 additions and 11 deletions

View File

@ -7,16 +7,8 @@
* \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

View File

@ -332,7 +332,7 @@ set(SRC
BKE_attribute.h
BKE_attribute.hh
BKE_attribute_math.hh
BKE_autoexec.h
BKE_autoexec.hh
BKE_bake_geometry_nodes_modifier.hh
BKE_bake_items.hh
BKE_bake_items_paths.hh

View File

@ -22,7 +22,7 @@
# include "BLI_string.h"
#endif
#include "BKE_autoexec.h" /* own include */
#include "BKE_autoexec.hh" /* own include */
bool BKE_autoexec_match(const char *path)
{

View File

@ -63,7 +63,7 @@
#include "BKE_addon.h"
#include "BKE_appdir.h"
#include "BKE_autoexec.h"
#include "BKE_autoexec.hh"
#include "BKE_blender.h"
#include "BKE_blender_version.h"
#include "BKE_blendfile.hh"