Hardware/LPC/Chip.cs
author moel.mich
Fri, 29 Jan 2010 21:58:31 +0000
changeset 12 a105b5eee02f
parent 1 361e324a0ed4
child 16 e9abdc6e05af
permissions -rw-r--r--
Release version 0.1.4. Fixed EntryPointNotFoundException for ADL_Adapter_ID_Get by adding two fallback implementations.
     1 
     2 using System;
     3 using System.Collections.Generic;
     4 using System.Text;
     5 
     6 namespace OpenHardwareMonitor.Hardware.LPC {
     7 
     8   public enum Chip : ushort {
     9     Unknown = 0,
    10     IT8716F = 0x8716,
    11     IT8718F = 0x8718,
    12     IT8720F = 0x8720,
    13     IT8726F = 0x8726,
    14     W83627DHG = 0xA020,
    15     F71882FG = 0x0541
    16   }
    17 
    18 }