diff options
Diffstat (limited to 'components/interfaces/rdIMatchResult.idl')
-rw-r--r-- | components/interfaces/rdIMatchResult.idl | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/components/interfaces/rdIMatchResult.idl b/components/interfaces/rdIMatchResult.idl new file mode 100644 index 0000000..edf13b4 --- /dev/null +++ b/components/interfaces/rdIMatchResult.idl @@ -0,0 +1,17 @@ +/* $Id */
+#include "nsISupports.idl"
+
+[scriptable, uuid(cf89b480-bce3-11de-a0dd-028037ec0200)]
+interface rdIMatchResult : nsISupports {
+
+ /* Result constants */
+ const short NO_MATCH = 0;
+ const short MATCH = 1;
+ const short DISABLED_MATCH = 2;
+ const short EXCLUDED_MATCH = 3;
+
+ /* Attributes */
+ attribute wstring redirectTo;
+ attribute short result;
+};
+
|