~siretart/ubuntu/utopic/blender/libav10

« back to all changes in this revision

Viewing changes to source/blender/blenlib/BLI_callbacks.h

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2014-02-19 11:24:23 UTC
  • mfrom: (14.2.23 sid)
  • Revision ID: package-import@ubuntu.com-20140219112423-rkmaz2m7ha06d4tk
Tags: 2.69-3ubuntu1
* Merge with Debian; remaining changes:
  - Configure without OpenImageIO on armhf, as it is not available on
    Ubuntu.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 * ***** END GPL LICENSE BLOCK *****
19
19
 */
20
20
 
21
 
/** \file blender/blenlib/BLI_callbacks.h
 
21
/** \file BLI_callbacks.h
22
22
 *  \ingroup bli
23
23
 */
24
24
 
43
43
        BLI_CB_EVT_SAVE_POST,
44
44
        BLI_CB_EVT_SCENE_UPDATE_PRE,
45
45
        BLI_CB_EVT_SCENE_UPDATE_POST,
 
46
        BLI_CB_EVT_GAME_PRE,
 
47
        BLI_CB_EVT_GAME_POST,
46
48
        BLI_CB_EVT_TOT
47
49
} eCbEvent;
48
50
 
61
63
void BLI_callback_global_init(void);
62
64
void BLI_callback_global_finalize(void);
63
65
 
64
 
 
65
 
/* This is blenlib internal only, unrelated to above */
66
 
void callLocalErrorCallBack(const char *msg);
67
 
 
68
66
#endif /* __BLI_CALLBACKS_H__ */