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

github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/project/solution.h')
-rw-r--r--src/project/solution.h122
1 files changed, 61 insertions, 61 deletions
diff --git a/src/project/solution.h b/src/project/solution.h
index 7ee7dff..47e674e 100644
--- a/src/project/solution.h
+++ b/src/project/solution.h
@@ -1,61 +1,61 @@
-/**
- * \file solution.h
- * \brief The Solution class, representing the top-level container for projects.
- * \author Copyright (c) 2002-2008 Jason Perkins and the Premake project
- *
- * \addtogroup project
- * @{
- */
-#if !defined(PREMAKE_SOLUTION_H)
-#define PREMAKE_SOLUTION_H
-
-#include "fields.h"
-#include "project.h"
-#include "base/strings.h"
-
-
-/**
- * Solution field index.
- * \note If you modify this list, you must also update SolutionFieldInfo[].
- */
-enum SolutionField
-{
- SolutionBaseDirectory,
- SolutionConfigurations,
- SolutionLanguage,
- SolutionLocation,
- SolutionName,
- NumSolutionFields
-};
-
-extern struct FieldInfo SolutionFieldInfo[];
-
-
-DECLARE_CLASS(Solution)
-
-Solution solution_create(void);
-void solution_destroy(Solution sln);
-
-void solution_add_config_name(Solution sln, const char* config_name);
-void solution_add_project(Solution sln, Project prj);
-const char* solution_get_base_dir(Solution sln);
-const char* solution_get_config_name(Solution sln, int index);
-Strings solution_get_config_names(Solution sln);
-Fields solution_get_fields(Solution sln);
-const char* solution_get_filename(Solution sln, const char* basename, const char* ext);
-const char* solution_get_language(Solution sln);
-const char* solution_get_location(Solution sln);
-const char* solution_get_name(Solution sln);
-Project solution_get_project(Solution sln, int index);
-const char* solution_get_value(Solution sln, enum SolutionField field);
-int solution_num_configs(Solution sln);
-int solution_num_projects(Solution sln);
-void solution_set_base_dir(Solution sln, const char* base_dir);
-void solution_set_language(Solution sln, const char* language);
-void solution_set_location(Solution sln, const char* location);
-void solution_set_name(Solution sln, const char* name);
-void solution_set_value(Solution sln, enum SolutionField field, const char* value);
-
-
-#endif
-/** @} */
+/**
+ * \file solution.h
+ * \brief The Solution class, representing the top-level container for projects.
+ * \author Copyright (c) 2002-2008 Jason Perkins and the Premake project
+ *
+ * \addtogroup project
+ * @{
+ */
+#if !defined(PREMAKE_SOLUTION_H)
+#define PREMAKE_SOLUTION_H
+
+#include "fields.h"
+#include "project.h"
+#include "base/strings.h"
+
+
+/**
+ * Solution field index.
+ * \note If you modify this list, you must also update SolutionFieldInfo[].
+ */
+enum SolutionField
+{
+ SolutionBaseDirectory,
+ SolutionConfigurations,
+ SolutionLanguage,
+ SolutionLocation,
+ SolutionName,
+ NumSolutionFields
+};
+
+extern struct FieldInfo SolutionFieldInfo[];
+
+
+DECLARE_CLASS(Solution)
+
+Solution solution_create(void);
+void solution_destroy(Solution sln);
+
+void solution_add_config_name(Solution sln, const char* config_name);
+void solution_add_project(Solution sln, Project prj);
+const char* solution_get_base_dir(Solution sln);
+const char* solution_get_config_name(Solution sln, int index);
+Strings solution_get_config_names(Solution sln);
+Fields solution_get_fields(Solution sln);
+const char* solution_get_filename(Solution sln, const char* basename, const char* ext);
+const char* solution_get_language(Solution sln);
+const char* solution_get_location(Solution sln);
+const char* solution_get_name(Solution sln);
+Project solution_get_project(Solution sln, int index);
+const char* solution_get_value(Solution sln, enum SolutionField field);
+int solution_num_configs(Solution sln);
+int solution_num_projects(Solution sln);
+void solution_set_base_dir(Solution sln, const char* base_dir);
+void solution_set_language(Solution sln, const char* language);
+void solution_set_location(Solution sln, const char* location);
+void solution_set_name(Solution sln, const char* name);
+void solution_set_value(Solution sln, enum SolutionField field, const char* value);
+
+
+#endif
+/** @} */