~ubuntu-branches/ubuntu/utopic/blender/utopic-proposed

« back to all changes in this revision

Viewing changes to source/blender/windowmanager/wm_window.h

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2012-04-28 12:11:12 UTC
  • mto: (14.1.6 experimental) (1.5.1)
  • mto: This revision was merged to the branch mainline in revision 34.
  • Revision ID: package-import@ubuntu.com-20120428121112-2zi0vp8b6vejda8i
Tags: upstream-2.63
ImportĀ upstreamĀ versionĀ 2.63

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
 */
30
30
 
31
31
 
32
 
#ifndef WM_WINDOW_H
33
 
#define WM_WINDOW_H
 
32
#ifndef __WM_WINDOW_H__
 
33
#define __WM_WINDOW_H__
34
34
 
35
35
struct bScreen;
36
36
struct wmOperator;
46
46
void            wm_window_close                 (bContext *C, wmWindowManager *wm, wmWindow *win);
47
47
 
48
48
void            wm_window_title                         (wmWindowManager *wm, wmWindow *win);
49
 
void            wm_window_add_ghostwindows      (bContext *C, wmWindowManager *wm);
 
49
void            wm_window_add_ghostwindows      (wmWindowManager *wm);
50
50
void            wm_window_process_events        (const bContext *C);
51
51
void            wm_window_process_events_nosleep(void);
52
52
 
70
70
int                     wm_window_duplicate_exec(bContext *C, struct wmOperator *op);
71
71
int                     wm_window_fullscreen_toggle_exec(bContext *C, struct wmOperator *op);
72
72
 
73
 
#endif /* WM_WINDOW_H */
 
73
#endif /* __WM_WINDOW_H__ */
74
74