Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2018-05-17 16:05:17 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-05-18 13:58:24 +0300
commitfbcdd07c98c71d1db19cd79634df6c6a77bb24b2 (patch)
treeb504ed02b15d0955ebc712429d96e14b459a4faa /source/blender/editors/include
parentb6a2dbbec20dca1010596aeb321b8295876d37ed (diff)
Cleanup: move unneeded struct out of DNA.
The real reason is that there is a conflict between Carbon header defining a "Collection" struct, and this works around it.
Diffstat (limited to 'source/blender/editors/include')
-rw-r--r--source/blender/editors/include/ED_fileselect.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/source/blender/editors/include/ED_fileselect.h b/source/blender/editors/include/ED_fileselect.h
index 92acfa6c1d2..645c3e6d75e 100644
--- a/source/blender/editors/include/ED_fileselect.h
+++ b/source/blender/editors/include/ED_fileselect.h
@@ -113,6 +113,17 @@ void ED_file_change_dir(struct bContext *C);
/* File menu stuff */
+/* FSMenuEntry's without paths indicate separators */
+typedef struct FSMenuEntry {
+ struct FSMenuEntry *next;
+
+ char *path;
+ char name[256]; /* FILE_MAXFILE */
+ short save;
+ short valid;
+ short pad[2];
+} FSMenuEntry;
+
typedef enum FSMenuCategory {
FS_CATEGORY_SYSTEM,
FS_CATEGORY_SYSTEM_BOOKMARKS,