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

« back to all changes in this revision

Viewing changes to source/blender/editors/space_file/filelist.h

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2013-08-14 10:43:49 UTC
  • mfrom: (14.2.19 sid)
  • Revision ID: package-import@ubuntu.com-20130814104349-t1d5mtwkphp12dyj
Tags: 2.68a-3
* Upload to unstable
* debian/: python3.3 Depends simplified
  - debian/control: python3.3 Depends dropped
    for blender-data package
  - 0001-blender_thumbnailer.patch refreshed
* debian/control: libavcodec b-dep versioning dropped

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
extern "C" {
38
38
#endif
39
39
 
 
40
struct BlendHandle;
40
41
struct FileList;
 
42
struct FileSelection;
41
43
struct FolderList;
 
44
struct Main;
 
45
struct ReportList;
 
46
struct Scene;
42
47
struct direntry;
43
 
struct BlendHandle;
44
 
struct Scene;
45
 
struct Main;
46
48
struct rcti;
47
 
struct ReportList;
48
 
struct FileSelection;
 
49
struct wmWindowManager;
49
50
 
50
51
typedef enum FileSelType {
51
52
        FILE_SEL_REMOVE = 0,
99
100
void                folderlist_pushdir(struct ListBase *folderlist, const char *dir);
100
101
int                 folderlist_clear_next(struct SpaceFile *sfile);
101
102
 
102
 
void                thumbnails_stop(struct FileList *filelist, const struct bContext *C);
103
103
void                thumbnails_start(struct FileList *filelist, const struct bContext *C);
104
 
int                 thumbnails_running(struct FileList *filelist, const struct bContext *C);
 
104
void                thumbnails_stop(struct wmWindowManager *wm, struct FileList *filelist);
 
105
int                 thumbnails_running(struct wmWindowManager *wm, struct FileList *filelist);
105
106
 
106
107
#ifdef __cplusplus
107
108
}