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:
authorKent Mein <mein@cs.umn.edu>2005-08-17 21:56:54 +0400
committerKent Mein <mein@cs.umn.edu>2005-08-17 21:56:54 +0400
commit829cb52ac671ab776b56e4b5f859d9baa0368664 (patch)
treecf65660f7b9842ebac8ac3b4b71726406db417f3
parent72d60d7b6371fa0b3426ea0db3aecb45b9ae7a4a (diff)
Got rid of a couple other warnings, of the form:
struct blah was declared in param list this is probably not what you want... Kent
-rw-r--r--source/blender/blenkernel/BKE_ipo.h1
-rw-r--r--source/blender/include/BDR_drawobject.h1
-rw-r--r--source/blender/include/BIF_editnla.h2
3 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/blenkernel/BKE_ipo.h b/source/blender/blenkernel/BKE_ipo.h
index e0c7fd787bb..4d23be16804 100644
--- a/source/blender/blenkernel/BKE_ipo.h
+++ b/source/blender/blenkernel/BKE_ipo.h
@@ -48,6 +48,7 @@ struct Object;
struct Sequence;
struct ListBase;
struct BezTriple;
+struct ID;
/* struct IPO_Channel; */
float frame_to_float(int cfra);
diff --git a/source/blender/include/BDR_drawobject.h b/source/blender/include/BDR_drawobject.h
index 96457376924..48477382690 100644
--- a/source/blender/include/BDR_drawobject.h
+++ b/source/blender/include/BDR_drawobject.h
@@ -47,6 +47,7 @@ struct Base;
struct BPoint;
struct BezTriple;
struct EditVert;
+struct EditFace;
void init_draw_rects(void);
void drawaxes(float size);
diff --git a/source/blender/include/BIF_editnla.h b/source/blender/include/BIF_editnla.h
index b8276d2976c..f5e72c793eb 100644
--- a/source/blender/include/BIF_editnla.h
+++ b/source/blender/include/BIF_editnla.h
@@ -33,6 +33,8 @@
#ifndef BIF_EDITNLA_H
#define BIF_EDITNLA_H
+struct BWinEvent;
+
void clever_numbuts_nla(void);
extern void winqreadnlaspace(struct ScrArea *sa, void *spacedata, struct BWinEvent *evt);