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/creator/creator_intern.h')
-rw-r--r--source/creator/creator_intern.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/source/creator/creator_intern.h b/source/creator/creator_intern.h
index 5f184e4cef3..0a13f45eef1 100644
--- a/source/creator/creator_intern.h
+++ b/source/creator/creator_intern.h
@@ -38,7 +38,7 @@ void main_signal_setup_fpe(void);
#endif /* WITH_PYTHON_MODULE */
-/* Shared data for argument handlers to store state in */
+/** Shared data for argument handlers to store state in. */
struct ApplicationState {
struct {
bool use_crash_handler;
@@ -57,10 +57,13 @@ extern struct ApplicationState app_state; /* creator.c */
* Keep in order of execution.
*/
enum {
+ /** Run before sub-system initialization. */
ARG_PASS_ENVIRONMENT = 1,
+ /** General settings parsing, also animation player. */
ARG_PASS_SETTINGS = 2,
- /** Windowing & graphical settings, ignored in background mode. */
+ /** Windowing & graphical settings (ignored in background mode). */
ARG_PASS_SETTINGS_GUI = 3,
+ /** Currently use for audio devices. */
ARG_PASS_SETTINGS_FORCE = 4,
/** Actions & fall back to loading blend file. */
@@ -95,4 +98,4 @@ extern char build_cflags[];
extern char build_cxxflags[];
extern char build_linkflags[];
extern char build_system[];
-#endif
+#endif /* BUILD_DATE */