~ubuntu-branches/ubuntu/maverick/blender/maverick

« back to all changes in this revision

Viewing changes to source/blender/blenkernel/BKE_bad_level_calls.h

  • Committer: Bazaar Package Importer
  • Author(s): Khashayar Naderehvandi, Khashayar Naderehvandi, Alessio Treglia
  • Date: 2009-01-22 16:53:59 UTC
  • mfrom: (14.1.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20090122165359-v0996tn7fbit64ni
Tags: 2.48a+dfsg-1ubuntu1
[ Khashayar Naderehvandi ]
* Merge from debian experimental (LP: #320045), Ubuntu remaining changes:
  - Add patch correcting header file locations.
  - Add libvorbis-dev and libgsm1-dev to Build-Depends.
  - Use avcodec_decode_audio2() in source/blender/src/hddaudio.c

[ Alessio Treglia ]
* Add missing previous changelog entries.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 * Stuff that definitely does not belong in the kernel! These will all
5
5
 * have to be removed in order to restore sanity.
6
6
 *
7
 
 * $Id: BKE_bad_level_calls.h 14444 2008-04-16 22:40:48Z hos $ 
 
7
 * $Id: BKE_bad_level_calls.h 16603 2008-09-18 22:33:49Z ianwill $ 
8
8
 *
9
9
 * ***** BEGIN GPL LICENSE BLOCK *****
10
10
 *
115
115
void docenter_new(void);
116
116
int saveover(char *str);
117
117
 
118
 
/* image.c */
119
 
#include "DNA_image_types.h"
120
 
void free_realtime_image(Image *ima); // has to become a callback, opengl stuff
121
 
 
122
118
/* ipo.c */
123
119
void copy_view3d_lock(short val);       // was a hack, to make scene layer ipo's possible
124
120
 
145
141
/* scene.c */
146
142
#include "DNA_sequence_types.h"
147
143
void free_editing(struct Editing *ed);  // scenes and sequences problem...
148
 
void BPY_do_all_scripts (short int event);
 
144
void BPY_do_all_scripts (short int event, short int anim);
149
145
int BPY_call_importloader(char *name);
150
146
 
151
147