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:
authorTon Roosendaal <ton@blender.org>2003-04-27 15:55:33 +0400
committerTon Roosendaal <ton@blender.org>2003-04-27 15:55:33 +0400
commit0b2b5dbfb982c383dd57aa4884f2b3f59f348747 (patch)
tree369db999db89340f5896dba92398f880ae379c95 /source/blender/makesdna/DNA_ID.h
parent4ddc43113ccc201d9a049814bb3acce36da58287 (diff)
More translations of c comments, now also include files!
Diffstat (limited to 'source/blender/makesdna/DNA_ID.h')
-rw-r--r--source/blender/makesdna/DNA_ID.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/source/blender/makesdna/DNA_ID.h b/source/blender/makesdna/DNA_ID.h
index f99de9106a8..e653f896e36 100644
--- a/source/blender/makesdna/DNA_ID.h
+++ b/source/blender/makesdna/DNA_ID.h
@@ -46,7 +46,7 @@ extern "C" {
struct Library;
struct FileData;
-/* let op: Sequence heeft identiek begin. */
+/* watch it: Sequence has identical beginning. */
/**
* ID is the first thing included in all serializable types. It
* provides a common handle to place all data in double-linked lists.
@@ -66,14 +66,14 @@ typedef struct ID {
} ID;
/**
- * ??
+ * For each library file used, a Library struct is added to Main
*/
typedef struct Library {
ID id;
ID *idblock;
struct FileData *filedata;
char name[160];
- int tot, pad; /* tot, idblock en filedata zijn voor lezen en schrijven */
+ int tot, pad; /* tot, idblock and filedata are only fo read and write */
} Library;
/**
@@ -129,8 +129,7 @@ typedef struct Library {
#define IPO_CO MAKE_ID2('C', 'O') /* NOTE! This is not an ID, but is needed for g.sipo->blocktype */
-/* id->flag: eerste 8 bits altijd op nul zetten bij inlezen */
-/* (always zero the first 8 bits when reading a file) */
+/* id->flag: set frist 8 bits always at zero while reading */
#define LIB_LOCAL 0
#define LIB_EXTERN 1
#define LIB_INDIRECT 2
@@ -142,7 +141,7 @@ typedef struct Library {
#define LIB_NEW 256
#define LIB_FAKEUSER 512
-/* vrije testflag */
+/* free test flag */
#define LIB_DOIT 1024
#ifdef __cplusplus