2004-05-30 14:54:02 +00:00
|
|
|
/*
|
|
|
|
* ReactOS kernel
|
|
|
|
* Copyright (C) 2004 ReactOS Team
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
2009-10-27 10:34:16 +00:00
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2004-05-30 14:54:02 +00:00
|
|
|
*/
|
2005-01-06 13:58:04 +00:00
|
|
|
/* $Id$
|
2004-05-30 14:54:02 +00:00
|
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
|
|
* PROJECT: ReactOS text-mode setup
|
|
|
|
* FILE: subsys/system/usetup/settings.h
|
|
|
|
* PURPOSE: Device settings support functions
|
|
|
|
* PROGRAMMER: Eric Kohl
|
|
|
|
*/
|
|
|
|
|
2010-02-26 11:43:19 +00:00
|
|
|
#pragma once
|
2004-05-30 14:54:02 +00:00
|
|
|
|
|
|
|
PGENERIC_LIST
|
|
|
|
CreateComputerTypeList(HINF InfFile);
|
|
|
|
|
|
|
|
PGENERIC_LIST
|
|
|
|
CreateDisplayDriverList(HINF InfFile);
|
|
|
|
|
2005-02-20 22:40:30 +00:00
|
|
|
BOOLEAN
|
|
|
|
ProcessComputerFiles(HINF InfFile,
|
|
|
|
PGENERIC_LIST List,
|
|
|
|
PWCHAR* AdditionalSectionName);
|
|
|
|
|
2004-06-20 12:18:08 +00:00
|
|
|
BOOLEAN
|
|
|
|
ProcessDisplayRegistry(HINF InfFile,
|
|
|
|
PGENERIC_LIST List);
|
|
|
|
|
2004-05-30 14:54:02 +00:00
|
|
|
PGENERIC_LIST
|
|
|
|
CreateKeyboardDriverList(HINF InfFile);
|
|
|
|
|
|
|
|
PGENERIC_LIST
|
2008-01-06 23:36:01 +00:00
|
|
|
CreateKeyboardLayoutList(HINF InfFile, WCHAR *DefaultKBLayout);
|
2004-05-30 14:54:02 +00:00
|
|
|
|
2007-12-23 20:29:52 +00:00
|
|
|
PGENERIC_LIST
|
2008-06-02 15:34:57 +00:00
|
|
|
CreateLanguageList(HINF InfFile, WCHAR * DefaultLanguage);
|
|
|
|
|
|
|
|
ULONG
|
|
|
|
GetDefaultLanguageIndex(VOID);
|
2007-12-23 20:29:52 +00:00
|
|
|
|
2008-01-07 21:34:56 +00:00
|
|
|
BOOLEAN
|
|
|
|
ProcessLocaleRegistry(PGENERIC_LIST List);
|
|
|
|
|
2004-05-30 14:54:02 +00:00
|
|
|
BOOLEAN
|
|
|
|
ProcessKeyboardLayoutRegistry(PGENERIC_LIST List);
|
|
|
|
|
|
|
|
BOOLEAN
|
|
|
|
ProcessKeyboardLayoutFiles(PGENERIC_LIST List);
|
|
|
|
|
2009-02-05 13:50:49 +00:00
|
|
|
BOOLEAN
|
|
|
|
SetGeoID(PWCHAR Id);
|
|
|
|
|
2004-05-30 14:54:02 +00:00
|
|
|
/* EOF */
|