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:
authorstarkos <none@none>2008-07-10 22:15:20 +0400
committerstarkos <none@none>2008-07-10 22:15:20 +0400
commitcbcade9f4102c74296944bbfbd081c410ddfefb9 (patch)
tree6760fdbc437e69b32189cd91ea1447375e24634a /src/actions/vs200x/vs200x_solution.h
parent2295d784f1d323f3c29e6e72d972646af89f3741 (diff)
Configuration, defines, bugs fixes, and a bunch of refactoring (r424:445)
Diffstat (limited to 'src/actions/vs200x/vs200x_solution.h')
-rw-r--r--src/actions/vs200x/vs200x_solution.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/actions/vs200x/vs200x_solution.h b/src/actions/vs200x/vs200x_solution.h
new file mode 100644
index 0000000..18683c4
--- /dev/null
+++ b/src/actions/vs200x/vs200x_solution.h
@@ -0,0 +1,30 @@
+/**
+ * \file vs200x_solution.h
+ * \brief Visual Studio 200x solution generation functions.
+ * \author Copyright (c) 2002-2008 Jason Perkins and the Premake project
+ */
+#if !defined(PREMAKE_VS200X_SOLUTION_H)
+#define PREMAKE_VS200X_SOLUTION_H
+
+#include "session/session.h"
+
+int vs2002_solution_configuration(Session sess, Solution sln, Stream strm);
+int vs2002_solution_dependencies(Session sess, Solution sln, Stream strm);
+int vs2002_solution_extensibility(Session sess, Solution sln, Stream strm);
+int vs2002_solution_project_configuration(Session sess, Solution sln, Stream strm);
+int vs2002_solution_projects(Session sess, Solution sln, Stream strm);
+int vs2002_solution_signature(Session sess, Solution sln, Stream strm);
+
+int vs2003_solution_configuration(Session sess, Solution sln, Stream strm);
+int vs2003_solution_signature(Session sess, Solution sln, Stream strm);
+
+int vs2005_solution_platforms(Session sess, Solution sln, Stream strm);
+int vs2005_solution_project_platforms(Session sess, Solution sln, Stream strm);
+int vs2005_solution_properties(Session sess, Solution sln, Stream strm);
+int vs2005_solution_signature(Session sess, Solution sln, Stream strm);
+
+int vs2008_solution_signature(Session sess, Solution sln, Stream strm);
+
+int vs200x_solution_create(Session sess, Solution sln, Stream strm);
+
+#endif