summaryrefslogtreecommitdiffstats
path: root/src/browse.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/browse.h')
-rw-r--r--src/browse.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/browse.h b/src/browse.h
index d46cbf0..263641f 100644
--- a/src/browse.h
+++ b/src/browse.h
@@ -18,8 +18,10 @@
struct State;
/// Run in "browse" mode, which execs a Python webserver.
-/// |command| is the command used to invoke ninja.
+/// \a ninja_command is the command used to invoke ninja.
+/// \a initial_target is the first target to load.
/// This function does not return if it runs successfully.
-void RunBrowsePython(State* state, const char* ninja_command);
+void RunBrowsePython(State* state, const char* ninja_command,
+ const char* initial_target);
#endif // NINJA_BROWSE_H_