aboutsummaryrefslogtreecommitdiff
path: root/components/interfaces/rdIMatchResult.idl
blob: 16de67c09d0aad7fbc360c4120eba0c5674dbaf9 (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;
};