1 | /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- |
---|
2 | * |
---|
3 | * The contents of this file are subject to the Netscape Public |
---|
4 | * License Version 1.1 (the "License"); you may not use this file |
---|
5 | * except in compliance with the License. You may obtain a copy of |
---|
6 | * the License at http://www.mozilla.org/NPL/ |
---|
7 | * |
---|
8 | * Software distributed under the License is distributed on an "AS |
---|
9 | * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or |
---|
10 | * implied. See the License for the specific language governing |
---|
11 | * rights and limitations under the License. |
---|
12 | * |
---|
13 | * The Original Code is Mozilla Communicator client code, released |
---|
14 | * March 31, 1998. |
---|
15 | * |
---|
16 | * The Initial Developer of the Original Code is Netscape |
---|
17 | * Communications Corporation. Portions created by Netscape are |
---|
18 | * Copyright (C) 1998 Netscape Communications Corporation. All |
---|
19 | * Rights Reserved. |
---|
20 | * |
---|
21 | * Contributor(s): |
---|
22 | * John Bandhauer <jband@netscape.com> |
---|
23 | * |
---|
24 | * Alternatively, the contents of this file may be used under the |
---|
25 | * terms of the GNU Public License (the "GPL"), in which case the |
---|
26 | * provisions of the GPL are applicable instead of those above. |
---|
27 | * If you wish to allow use of your version of this file only |
---|
28 | * under the terms of the GPL and not to allow others to use your |
---|
29 | * version of this file under the NPL, indicate your decision by |
---|
30 | * deleting the provisions above and replace them with the notice |
---|
31 | * and other provisions required by the GPL. If you do not delete |
---|
32 | * the provisions above, a recipient may use your version of this |
---|
33 | * file under either the NPL or the GPL. |
---|
34 | */ |
---|
35 | |
---|
36 | #include "nsISupports.idl" |
---|
37 | |
---|
38 | %{C++ |
---|
39 | #ifdef XP_OS2 // OS2 has UNKNOWN problems :) |
---|
40 | #undef UNKNOWN |
---|
41 | #endif |
---|
42 | %} |
---|
43 | |
---|
44 | /** |
---|
45 | * Enumeration of Programming Languages |
---|
46 | * @status FROZEN |
---|
47 | */ |
---|
48 | |
---|
49 | [scriptable, uuid(ea604e90-40ba-11d5-90bb-0010a4e73d9a)] |
---|
50 | interface nsIProgrammingLanguage : nsISupports |
---|
51 | { |
---|
52 | /** |
---|
53 | * Identifiers for programming languages. |
---|
54 | */ |
---|
55 | const PRUint32 UNKNOWN = 0; |
---|
56 | const PRUint32 CPLUSPLUS = 1; |
---|
57 | const PRUint32 JAVASCRIPT = 2; |
---|
58 | const PRUint32 PYTHON = 3; |
---|
59 | const PRUint32 PERL = 4; |
---|
60 | const PRUint32 JAVA = 5; |
---|
61 | const PRUint32 ZX81_BASIC = 6; // it could happen :) |
---|
62 | const PRUint32 JAVASCRIPT2 = 7; |
---|
63 | // This list can grow indefinitely. Just don't ever change an existing item. |
---|
64 | |
---|
65 | }; |
---|