blob: edf13b45588630087446b863ab2a2093c7d6aab6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
};
|