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:
authorCasey Corn <cmccad@yahoo.com>2003-05-23 04:38:54 +0400
committerCasey Corn <cmccad@yahoo.com>2003-05-23 04:38:54 +0400
commit0773536829482ac79032efc6926be6a2e5da8813 (patch)
tree31f429448d499c15e75ff073bc47c4b9867b37d7 /source/creator
parent7032c26e0bb5add472fca53835e7fbaef8ba44e5 (diff)
First documentation commit :)
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/creator.c22
1 files changed, 21 insertions, 1 deletions
diff --git a/source/creator/creator.c b/source/creator/creator.c
index 57e4d9c9146..54141ad5b3a 100644
--- a/source/creator/creator.c
+++ b/source/creator/creator.c
@@ -29,7 +29,21 @@
*
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
-
+/**
+ * \file creator.c
+ * \ingroup mainmodule
+ * \brief The main blender function is defined here.
+ *
+ * This file contains the int main(int,char**) function along with some helper
+ * functions.
+ *
+ * \todo clear out unnecessary includes
+ *
+ */
+/**
+ * \defgroup main_helpers Helpers
+ * \ingroup mainmodule
+ */
#include <stdlib.h>
#ifdef HAVE_CONFIG_H
@@ -111,10 +125,16 @@ extern char * build_platform;
extern char * build_type;
/* Local Function prototypes */
+
static void print_help();
/* for the callbacks: */
+/**
+ * For callback functions. What does this do?
+ * \ingroup main_helpers
+ * \ingroup undoc
+ */
extern int pluginapi_force_ref(void); /* from blenpluginapi:pluginapi.c */
char bprogname[FILE_MAXDIR+FILE_MAXFILE];