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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-02-17 22:59:41 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-17 22:59:41 +0400
commit2b7ca2304a9b17568fac57a0bceba72b9c9ab580 (patch)
tree0cb3492a7d6624bca9390375a5b20bd5b86f76d5 /source/blender/ikplugin
parent99d0ba6299d9f2acdf2446b2f52e812877ebcc70 (diff)
unify include guard defines, __$FILENAME__
without the underscores these clogged up the namespace for autocompleation which was annoying.
Diffstat (limited to 'source/blender/ikplugin')
-rw-r--r--source/blender/ikplugin/BIK_api.h6
-rw-r--r--source/blender/ikplugin/intern/ikplugin_api.h6
-rw-r--r--source/blender/ikplugin/intern/iksolver_plugin.h6
-rw-r--r--source/blender/ikplugin/intern/itasc_plugin.h6
4 files changed, 12 insertions, 12 deletions
diff --git a/source/blender/ikplugin/BIK_api.h b/source/blender/ikplugin/BIK_api.h
index 4b90b2546ff..cbc6485cb54 100644
--- a/source/blender/ikplugin/BIK_api.h
+++ b/source/blender/ikplugin/BIK_api.h
@@ -31,8 +31,8 @@
*/
-#ifndef BIK_API_H
-#define BIK_API_H
+#ifndef __BIK_API_H__
+#define __BIK_API_H__
#ifdef __cplusplus
extern "C" {
@@ -92,5 +92,5 @@ int BIK_get_solver_param(struct bPose *pose, struct bPoseChannel *pchan, int id,
}
#endif
-#endif // BIK_API_H
+#endif // __BIK_API_H__
diff --git a/source/blender/ikplugin/intern/ikplugin_api.h b/source/blender/ikplugin/intern/ikplugin_api.h
index b1e723289ec..77c962269dc 100644
--- a/source/blender/ikplugin/intern/ikplugin_api.h
+++ b/source/blender/ikplugin/intern/ikplugin_api.h
@@ -31,8 +31,8 @@
*/
-#ifndef IKPLUGIN_API_H
-#define IKPLUGIN_API_H
+#ifndef __IKPLUGIN_API_H__
+#define __IKPLUGIN_API_H__
#ifdef __cplusplus
extern "C" {
@@ -60,5 +60,5 @@ typedef struct IKPlugin IKPlugin;
}
#endif
-#endif // IKPLUGIN_API_H
+#endif // __IKPLUGIN_API_H__
diff --git a/source/blender/ikplugin/intern/iksolver_plugin.h b/source/blender/ikplugin/intern/iksolver_plugin.h
index 885383ab65e..dd00c5f4add 100644
--- a/source/blender/ikplugin/intern/iksolver_plugin.h
+++ b/source/blender/ikplugin/intern/iksolver_plugin.h
@@ -31,8 +31,8 @@
*/
-#ifndef IKSOLVER_PLUGIN_H
-#define IKSOLVER_PLUGIN_H
+#ifndef __IKSOLVER_PLUGIN_H__
+#define __IKSOLVER_PLUGIN_H__
#include "ikplugin_api.h"
@@ -47,5 +47,5 @@ void iksolver_execute_tree(struct Scene *scene, struct Object *ob, struct bPose
}
#endif
-#endif // IKSOLVER_PLUGIN_H
+#endif // __IKSOLVER_PLUGIN_H__
diff --git a/source/blender/ikplugin/intern/itasc_plugin.h b/source/blender/ikplugin/intern/itasc_plugin.h
index 1d6acb2cce3..0d5fde0bec0 100644
--- a/source/blender/ikplugin/intern/itasc_plugin.h
+++ b/source/blender/ikplugin/intern/itasc_plugin.h
@@ -31,8 +31,8 @@
*/
-#ifndef ITASC_PLUGIN_H
-#define ITASC_PLUGIN_H
+#ifndef __ITASC_PLUGIN_H__
+#define __ITASC_PLUGIN_H__
#include "ikplugin_api.h"
@@ -52,5 +52,5 @@ void itasc_test_constraint(struct Object *ob, struct bConstraint *cons);
}
#endif
-#endif // ITASC_PLUGIN_H
+#endif // __ITASC_PLUGIN_H__