moel@132: /*
moel@132:   
moel@132:   Version: MPL 1.1/GPL 2.0/LGPL 2.1
moel@132: 
moel@132:   The contents of this file are subject to the Mozilla Public License Version
moel@132:   1.1 (the "License"); you may not use this file except in compliance with
moel@132:   the License. You may obtain a copy of the License at
moel@132:  
moel@132:   http://www.mozilla.org/MPL/
moel@132: 
moel@132:   Software distributed under the License is distributed on an "AS IS" basis,
moel@132:   WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
moel@132:   for the specific language governing rights and limitations under the License.
moel@132: 
moel@132:   The Original Code is the Open Hardware Monitor code.
moel@132: 
moel@132:   The Initial Developer of the Original Code is 
moel@132:   Michael Möller <m.moeller@gmx.ch>.
moel@265:   Portions created by the Initial Developer are Copyright (C) 2009-2011
moel@132:   the Initial Developer. All Rights Reserved.
moel@132: 
moel@132:   Contributor(s):
moel@132: 
moel@132:   Alternatively, the contents of this file may be used under the terms of
moel@132:   either the GNU General Public License Version 2 or later (the "GPL"), or
moel@132:   the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
moel@132:   in which case the provisions of the GPL or the LGPL are applicable instead
moel@132:   of those above. If you wish to allow use of your version of this file only
moel@132:   under the terms of either the GPL or the LGPL, and not to allow others to
moel@132:   use your version of this file under the terms of the MPL, indicate your
moel@132:   decision by deleting the provisions above and replace them with the notice
moel@132:   and other provisions required by the GPL or the LGPL. If you do not delete
moel@132:   the provisions above, a recipient may use your version of this file under
moel@132:   the terms of any one of the MPL, the GPL or the LGPL.
moel@132:  
moel@132: */
moel@126: 
moel@126: namespace OpenHardwareMonitor.Hardware.Mainboard {
moel@126: 
moel@165:   internal enum Model {
moel@153:     // ASRock
moel@153:     _880GMH_USB3,
moel@220:     AOD790GX_128M,
moel@221:     P55_Deluxe,
moel@153: 
moel@130:     // ASUS
moel@133:     Crosshair_III_Formula,
moel@133:     M2N_SLI_DELUXE,
moel@144:     M4A79XTD_EVO,
moel@133:     P5W_DH_Deluxe,    
moel@152:     P6X58D_E,
moel@265:     P8P67_PRO,
moel@174:     Rampage_Extreme,
moel@174:     Rampage_II_GENE,
moel@130: 
moel@126:     // DFI
moel@126:     LP_BI_P45_T2RS_Elite,
moel@132:     LP_DK_P55_T3eH9,
moel@132: 
moel@177:     // ECS
moel@177: 
moel@177:     A890GXM_A,
moel@177: 
moel@132:     // EVGA
moel@132:     X58_SLI_Classified,
moel@126: 
moel@126:     // Gigabyte
moel@130:     _965P_S3,
moel@126:     EP45_DS3R,
moel@130:     EP45_UD3R,
moel@133:     EX58_EXTREME,
moel@154:     GA_MA770T_UD3,
moel@126:     GA_MA785GMT_UD2H,
moel@126:     P35_DS3,
moel@133:     P35_DS3L,
moel@148:     P55_UD4,
moel@168:     P55M_UD4,
moel@130:     X38_DS5,
moel@138:     X58A_UD3R,
moel@126: 
moel@126:     // Unknown
moel@126:     Unknown    
moel@126:   }
moel@126: }