Hardware/Mainboard/Model.cs
author moel.mich
Sun, 23 Sep 2012 18:37:43 +0000
changeset 380 573f1fff48b2
parent 357 fb8dc26f65a4
child 382 ba6abd47a80c
permissions -rw-r--r--
Fixed Issue 387. The new implementation does not try to start a ring 0 driver that already exists, but could not be opened. It tries to delete the driver and install it new. The driver is now stored temporarily in the application folder. The driver is not correctly removed on system shutdown.
     1 /*
     2  
     3   This Source Code Form is subject to the terms of the Mozilla Public
     4   License, v. 2.0. If a copy of the MPL was not distributed with this
     5   file, You can obtain one at http://mozilla.org/MPL/2.0/.
     6  
     7   Copyright (C) 2009-2012 Michael Möller <mmoeller@openhardwaremonitor.org>
     8 	
     9 */
    10 
    11 namespace OpenHardwareMonitor.Hardware.Mainboard {
    12 
    13   internal enum Model {
    14     // ASRock
    15     _880GMH_USB3,
    16     AOD790GX_128M,
    17     P55_Deluxe,
    18 
    19     // ASUS
    20     Crosshair_III_Formula,
    21     M2N_SLI_DELUXE,
    22     M4A79XTD_EVO,
    23     P5W_DH_Deluxe,    
    24     P6T,
    25     P6X58D_E,    
    26     P8P67,
    27     P8P67_EVO,
    28     P8P67_PRO,
    29     P8P67_M_PRO,
    30     P8Z77_V,
    31     P9X79,
    32     Rampage_Extreme,
    33     Rampage_II_GENE,
    34 
    35     // DFI
    36     LP_BI_P45_T2RS_Elite,
    37     LP_DK_P55_T3eH9,
    38 
    39     // ECS
    40     A890GXM_A,
    41 
    42     // EVGA
    43     X58_SLI_Classified,
    44 
    45     // Gigabyte
    46     _965P_S3,
    47     EP45_DS3R,
    48     EP45_UD3R,
    49     EX58_EXTREME,
    50     EX58_UD3R,
    51     G41M_Combo,
    52     G41MT_S2,
    53     G41MT_S2P,
    54     GA_MA770T_UD3,
    55     GA_MA770T_UD3P,
    56     GA_MA785GM_US2H,
    57     GA_MA785GMT_UD2H,    
    58     GA_MA78LM_S2H,    
    59     GA_MA790X_UD3P,
    60     H55_USB3,
    61     H55N_USB3,
    62     H61M_DS2_REV_1_2,
    63     H61M_USB3_B3_REV_2_0,
    64     H67A_UD3H_B3,
    65     H67A_USB3_B3,
    66     P35_DS3,
    67     P35_DS3L,    
    68     P55_UD4,
    69     P55A_UD3,
    70     P55M_UD4,
    71     P67A_UD3_B3,
    72     P67A_UD3R_B3,
    73     P67A_UD4_B3,
    74     P8Z68_V_PRO,
    75     X38_DS5,
    76     X58A_UD3R,
    77     Z68A_D3H_B3,
    78     Z68AP_D3,
    79     Z68X_UD3H_B3,
    80     Z68X_UD7_B3,
    81 
    82     // Shuttle
    83     FH67,
    84 
    85     // Unknown
    86     Unknown    
    87   }
    88 }