This repository has been archived on 2023-10-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
blender-archive/source/blender/bpython/intern
Kent Mein e49aeb8468 In stubs.c I added a dummy return to functions that were non void types.
in readfile.c I renamed some localvars that were named main to mainl in
a couple of functions.

in action.c I initalized a var to 0.  This is probably not needed but
its a little safer incase someone adds more modes...
I've included a diff of this last one below.

Kent

Index: action.c
===================================================================
RCS file: /cvs01/blender/source/blender/blenkernel/intern/action.c,v
retrieving revision 1.6
diff -u -r1.6 action.c
--- action.c    2002/11/25 12:01:52     1.6
+++ action.c    2002/12/20 02:06:27
@@ -153,7 +153,7 @@
 ){
        bConstraint *dcon;
        const bConstraint *scon;
-       float dstweight;
+       float dstweight = 0;

        switch (mode){
        case POSE_BLEND:
2002-12-20 02:08:46 +00:00
..
2002-11-25 12:02:15 +00:00
2002-11-25 11:16:17 +00:00
2002-11-25 12:02:15 +00:00
2002-11-25 11:16:17 +00:00
2002-11-25 12:02:15 +00:00
2002-11-25 12:02:15 +00:00
2002-11-25 11:16:17 +00:00
2002-11-25 12:02:15 +00:00
2002-11-25 12:02:15 +00:00
2002-11-25 12:02:15 +00:00
2002-11-25 11:16:17 +00:00
2002-11-25 12:02:15 +00:00
2002-11-25 11:16:17 +00:00
2002-11-25 11:16:17 +00:00
2002-11-25 12:02:15 +00:00
2002-11-25 12:02:15 +00:00
2002-11-25 12:02:15 +00:00
2002-11-25 12:02:15 +00:00
2002-11-25 11:16:17 +00:00
2002-11-25 11:16:17 +00:00
2002-11-25 11:16:17 +00:00
2002-10-12 11:37:38 +00:00
2002-11-25 12:02:15 +00:00
2002-11-25 12:02:15 +00:00
2002-11-25 11:16:17 +00:00
2002-11-25 10:13:52 +00:00
2002-11-25 12:02:15 +00:00
2002-11-25 11:16:17 +00:00
2002-11-25 12:02:15 +00:00
2002-11-25 11:16:17 +00:00
2002-11-25 12:02:15 +00:00
2002-10-12 11:37:38 +00:00

Python API library 			// strubi@blender.nl
------------------


NEW: 
        Several frozen Python byte code modules are now included in the
        API under libfrozen.a. libbpython must be linked with libfrozen.a
        from now on.

source files:

py_*.c:	library files of Jan Walters API. Might undergo major replacements / surgery 
        later.
opy_*:  the 'old' python API code. In fact quite nice and functional... -- needs
        splitting up in API/ interfacing part.
BPY_*:  these are the future API prefixes (newly written stuff that should be
        Blender 3.0 compliant... -- no interface calls inside)
        This is not YET quite true, for convenience, it still contains some direct
        Blender access. 
b_* :   Blender interfacing / tools -- may contain dirty access hacks for blender
        datastructures..