Try to handle Android Rescue Party triggers.

The Rescue Party trigger manifests itself when a user is trying to boot
a ROM but keeps getting dumped back to recovery.

Normally, TWRP doesn't capture this, and the user is often wondering
what is happening. This patch captures the trigger and presents a clear
message to the user about what is going on (with options of how to
resolve the situation).

Change-Id: Ia4414ce6270a7ee9e54d14381990ca4766e757bd
diff --git a/startupArgs.hpp b/startupArgs.hpp
index 53a47c4..6bb2cb8 100755
--- a/startupArgs.hpp
+++ b/startupArgs.hpp
@@ -40,6 +40,7 @@
 	static inline std::string const REASON = "--reason";
 	static inline std::string const FASTBOOT = "--fastboot";
 	static inline std::string const NANDROID = "--nandroid";
+	static inline std::string const RESCUE_PARTY = "--prompt_and_wipe_data";
 	void parse(int *argc, char ***argv);
 	bool Should_Skip_Decryption();
 	std::string Get_Intent();
@@ -50,4 +51,4 @@
 	bool fastboot_mode = false;
 	std::string Send_Intent;
 };
-#endif
\ No newline at end of file
+#endif