Hardware/Mainboard/Model.cs
author moel.mich
Tue, 25 May 2010 18:57:28 +0000
changeset 127 76aaf45a01c7
child 130 80065ab20b84
permissions -rw-r--r--
Added a workaround for the "You must keep the stream open for the lifetime of the Image." problem of the Image.FromStream method. This also reduced the overall memory usage (private working set).
moel@126
     1
using System;
moel@126
     2
using System.Collections.Generic;
moel@126
     3
using System.Text;
moel@126
     4
moel@126
     5
namespace OpenHardwareMonitor.Hardware.Mainboard {
moel@126
     6
moel@126
     7
  public enum Model {
moel@126
     8
    // DFI
moel@126
     9
    LP_BI_P45_T2RS_Elite,
moel@126
    10
    LP_DK_P55_T3eH9,    
moel@126
    11
moel@126
    12
    // Gigabyte
moel@126
    13
    EP45_DS3R,
moel@126
    14
    GA_MA785GMT_UD2H,
moel@126
    15
    P35_DS3,
moel@126
    16
moel@126
    17
    // Unknown
moel@126
    18
    Unknown    
moel@126
    19
  }
moel@126
    20
}