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/actions/vs200x/vs200x_project.h')
-rw-r--r--src/actions/vs200x/vs200x_project.h60
1 files changed, 29 insertions, 31 deletions
diff --git a/src/actions/vs200x/vs200x_project.h b/src/actions/vs200x/vs200x_project.h
index a4950f9..020cdea 100644
--- a/src/actions/vs200x/vs200x_project.h
+++ b/src/actions/vs200x/vs200x_project.h
@@ -6,36 +6,34 @@
#if !defined(PREMAKE_VS200X_PROJECT_H)
#define PREMAKE_VS200X_PROJECT_H
-#include "session/session.h"
-
-int vs200x_project_config_element(Session sess, Project prj, Stream strm);
-int vs200x_project_config_end(Session sess, Project prj, Stream strm);
-int vs200x_project_create(Session sess, Project prj, Stream strm);
-int vs200x_project_element(Session sess, Project prj, Stream strm);
-int vs200x_project_encoding(Session sess, Project prj, Stream strm);
-int vs200x_project_file(Session sess, Project prj, Stream strm, const char* filename, int state);
-int vs200x_project_files(Session sess, Project prj, Stream strm);
-int vs200x_project_globals(Session sess, Project prj, Stream strm);
-int vs200x_project_platforms(Session sess, Project prj, Stream strm);
-int vs200x_project_references(Session sess, Project prj, Stream strm);
-int vs200x_project_tool_files(Session sess, Project prj, Stream strm);
-int vs200x_project_vc_alink_tool(Session sess, Project prj, Stream strm);
-int vs200x_project_vc_app_verifier_tool(Session sess, Project prj, Stream strm);
-int vs200x_project_vc_bsc_make_tool(Session sess, Project prj, Stream strm);
-int vs200x_project_vc_cl_compiler_tool(Session sess, Project prj, Stream strm);
-int vs200x_project_vc_custom_build_tool(Session sess, Project prj, Stream strm);
-int vs200x_project_vc_fx_cop_tool(Session sess, Project prj, Stream strm);
-int vs200x_project_vc_midl_tool(Session sess, Project prj, Stream strm);
-int vs200x_project_vc_linker_tool(Session sess, Project prj, Stream strm);
-int vs200x_project_vc_managed_resource_compiler_tool(Session sess, Project prj, Stream strm);
-int vs200x_project_vc_manifest_tool(Session sess, Project prj, Stream strm);
-int vs200x_project_vc_pre_build_event_tool(Session sess, Project prj, Stream strm);
-int vs200x_project_vc_pre_link_event_tool(Session sess, Project prj, Stream strm);
-int vs200x_project_vc_post_build_event_tool(Session sess, Project prj, Stream strm);
-int vs200x_project_vc_resource_compiler_tool(Session sess, Project prj, Stream strm);
-int vs200x_project_vc_web_deployment_tool(Session sess, Project prj, Stream strm);
-int vs200x_project_vc_web_service_proxy_generator_tool(Session sess, Project prj, Stream strm);
-int vs200x_project_vc_xdc_make_tool(Session sess, Project prj, Stream strm);
-int vs200x_project_vc_xml_data_generator_tool(Session sess, Project prj, Stream strm);
+int vs200x_project_config_element(Project prj, Stream strm);
+int vs200x_project_config_end(Project prj, Stream strm);
+int vs200x_project_create(Project prj, Stream strm);
+int vs200x_project_element(Project prj, Stream strm);
+int vs200x_project_encoding(Project prj, Stream strm);
+int vs200x_project_file(Project prj, Stream strm, const char* filename, int state);
+int vs200x_project_files(Project prj, Stream strm);
+int vs200x_project_globals(Project prj, Stream strm);
+int vs200x_project_platforms(Project prj, Stream strm);
+int vs200x_project_references(Project prj, Stream strm);
+int vs200x_project_tool_files(Project prj, Stream strm);
+int vs200x_project_vc_alink_tool(Project prj, Stream strm);
+int vs200x_project_vc_app_verifier_tool(Project prj, Stream strm);
+int vs200x_project_vc_bsc_make_tool(Project prj, Stream strm);
+int vs200x_project_vc_cl_compiler_tool(Project prj, Stream strm);
+int vs200x_project_vc_custom_build_tool(Project prj, Stream strm);
+int vs200x_project_vc_fx_cop_tool(Project prj, Stream strm);
+int vs200x_project_vc_midl_tool(Project prj, Stream strm);
+int vs200x_project_vc_linker_tool(Project prj, Stream strm);
+int vs200x_project_vc_managed_resource_compiler_tool(Project prj, Stream strm);
+int vs200x_project_vc_manifest_tool(Project prj, Stream strm);
+int vs200x_project_vc_pre_build_event_tool(Project prj, Stream strm);
+int vs200x_project_vc_pre_link_event_tool(Project prj, Stream strm);
+int vs200x_project_vc_post_build_event_tool(Project prj, Stream strm);
+int vs200x_project_vc_resource_compiler_tool(Project prj, Stream strm);
+int vs200x_project_vc_web_deployment_tool(Project prj, Stream strm);
+int vs200x_project_vc_web_service_proxy_generator_tool(Project prj, Stream strm);
+int vs200x_project_vc_xdc_make_tool(Project prj, Stream strm);
+int vs200x_project_vc_xml_data_generator_tool(Project prj, Stream strm);
#endif