home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1998 January / PCO0198.ISO / browser / net_linx / java40.jar / netscape / softupdate / WinRegValue.class (.txt) < prev   
Encoding:
Java Class File  |  1997-11-03  |  745 b   |  23 lines

  1. package netscape.softupdate;
  2.  
  3. public final class WinRegValue {
  4.    public int type;
  5.    public byte[] data;
  6.    public static final int REG_SZ = 1;
  7.    public static final int REG_EXPAND_SZ = 2;
  8.    public static final int REG_BINARY = 3;
  9.    public static final int REG_DWORD = 4;
  10.    public static final int REG_DWORD_LITTLE_ENDIAN = 4;
  11.    public static final int REG_DWORD_BIG_ENDIAN = 5;
  12.    public static final int REG_LINK = 6;
  13.    public static final int REG_MULTI_SZ = 7;
  14.    public static final int REG_RESOURCE_LIST = 8;
  15.    public static final int REG_FULL_RESOURCE_DESCRIPTOR = 9;
  16.    public static final int REG_RESOURCE_REQUIREMENTS_LIST = 10;
  17.  
  18.    public WinRegValue(int var1, byte[] var2) {
  19.       this.type = var1;
  20.       this.data = var2;
  21.    }
  22. }
  23.