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:
authorJoshua Leung <aligorith@gmail.com>2007-08-15 14:38:46 +0400
committerJoshua Leung <aligorith@gmail.com>2007-08-15 14:38:46 +0400
commitc78e6d987b7f455184359cf044a282a5f0856d14 (patch)
tree8f30208b941a89fb60ed1356499df1fd03beae52 /source/blender/include/BIF_editarmature.h
parent0cc2de1b3777cee64e334c5b624aeb5742bc649e (diff)
Fix for 'undefined function' compiler warning in poseobject.c, introduced by Brecht's cool heat-skinning stuff.
Diffstat (limited to 'source/blender/include/BIF_editarmature.h')
-rw-r--r--source/blender/include/BIF_editarmature.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/include/BIF_editarmature.h b/source/blender/include/BIF_editarmature.h
index f2b6dbf38bd..3f9f62be46d 100644
--- a/source/blender/include/BIF_editarmature.h
+++ b/source/blender/include/BIF_editarmature.h
@@ -109,7 +109,9 @@ void select_bone_parent(void);
void unique_editbone_name (struct ListBase *ebones, char *name);
void auto_align_armature(short mode);
-void create_vgroups_from_armature(Object *ob, Object *par);
+
+void create_vgroups_from_armature(struct Object *ob, struct Object *par);
+void add_verts_to_dgroups(struct Object *ob, struct Object *par, int heat, int mirror);
void hide_selected_pose_bones(void);
void hide_unselected_pose_bones(void);