wasCSharpSQLite – Blame information for rev

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 /*
2 * JACL.java --
3 *
4 * This class stores all the Jacl-specific package protected constants.
5 * The exact values should match those in tcl.h.
6 *
7 * Copyright (c) 1997 Sun Microsystems, Inc.
8 *
9 * See the file "license.terms" for information on usage and
10 * redistribution of this file, and for a DISCLAIMER OF ALL
11 * WARRANTIES.
12 *
13 * Included in SQLite3 port to C# for use in testharness only; 2008 Noah B Hart
14 *
15 * RCS @(#) $Id: JACL.java,v 1.1.1.1 1998/10/14 21:09:21 cvsadmin Exp $
16 *
17 */
18 using System;
19 namespace tcl.lang
20 {
21  
22 /*
23 * This class holds all the Jacl-specific package protected constants.
24 */
25  
26 public class JACL
27 {
28  
29 /*
30 * Platform constants. PLATFORM is not final because we may change it for
31 * testing purposes only.
32 */
33  
34 public const int PLATFORM_UNIX = 0;
35 public const int PLATFORM_WINDOWS = 1;
36 public const int PLATFORM_MAC = 2;
37 public static int PLATFORM;
38 static JACL()
39 {
40 PLATFORM = Util.ActualPlatform;
41 }
42 } // end JACL class
43 }