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:
Diffstat (limited to 'source/blender/makesdna/DNA_text_types.h')
-rw-r--r--source/blender/makesdna/DNA_text_types.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_text_types.h b/source/blender/makesdna/DNA_text_types.h
index d1859d22115..d6ec62e63c0 100644
--- a/source/blender/makesdna/DNA_text_types.h
+++ b/source/blender/makesdna/DNA_text_types.h
@@ -31,6 +31,8 @@
#ifndef DNA_TEXT_TYPES_H
#define DNA_TEXT_TYPES_H
+#include "time.h"
+
#include "DNA_listBase.h"
#include "DNA_ID.h"
@@ -46,7 +48,7 @@ typedef struct Text {
ID id;
char *name;
-
+
int flags, nlines;
ListBase lines;
@@ -57,6 +59,8 @@ typedef struct Text {
int undo_pos, undo_len;
void *compiled;
+
+ time_t mtime;
} Text;