~ubuntu-branches/ubuntu/trusty/blender/trusty

« back to all changes in this revision

Viewing changes to source/blender/python/intern/stubs.c

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha
  • Date: 2013-03-06 12:08:47 UTC
  • mfrom: (1.5.1) (14.1.8 experimental)
  • Revision ID: package-import@ubuntu.com-20130306120847-frjfaryb2zrotwcg
Tags: 2.66a-1ubuntu1
* Resynchronize with Debian (LP: #1076930, #1089256, #1052743, #999024,
  #1122888, #1147084)
* debian/control:
  - Lower build-depends on libavcodec-dev since we're not
    doing the libav9 transition in Ubuntu yet

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
 *  \ingroup pythonintern
29
29
 */
30
30
 
 
31
#include "BLI_utildefines.h"
 
32
 
 
33
#include "BPY_extern.h"
31
34
 
32
35
/* python, will come back */
33
36
//void BPY_script_exec(void) {}
34
37
//void BPY_python_start(void) {}
35
38
//void BPY_text_free_code(void) {}
36
 
void BPY_pyconstraint_exec(void) {}
37
 
void BPY_pyconstraint_target(void) {}
38
 
int BPY_is_pyconstraint(void) {return 0;}
39
 
void BPY_pyconstraint_update(void) {}
 
39
void BPY_pyconstraint_exec(struct bPythonConstraint *UNUSED(con), struct bConstraintOb *UNUSED(cob), struct ListBase *UNUSED(targets)) {}
 
40
void BPY_pyconstraint_target(struct bPythonConstraint *UNUSED(con), struct bConstraintTarget *UNUSED(ct)) {}
 
41
int BPY_is_pyconstraint(struct Text *UNUSED(text)) { return 0;}
 
42
void BPY_pyconstraint_update(struct Object *UNUSED(owner), struct bConstraint *UNUSED(con)) {}