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
|
|
|
*/
|
2013-03-16 20:08:56 +00:00
|
|
|
/*
|
2004-05-30 14:54:02 +00:00
|
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
|
|
* PROJECT: ReactOS text-mode setup
|
2015-09-13 16:40:36 +00:00
|
|
|
* FILE: base/setup/usetup/settings.h
|
2004-05-30 14:54:02 +00:00
|
|
|
* PURPOSE: Device settings support functions
|
2018-05-27 19:33:07 +00:00
|
|
|
* PROGRAMMER:
|
2004-05-30 14:54:02 +00:00
|
|
|
*/
|
|
|
|
|
2010-02-26 11:43:19 +00:00
|
|
|
#pragma once
|
2004-05-30 14:54:02 +00:00
|
|
|
|
|
|
|
PGENERIC_LIST
|
2014-05-12 16:14:19 +00:00
|
|
|
CreateComputerTypeList(
|
|
|
|
HINF InfFile);
|
2004-05-30 14:54:02 +00:00
|
|
|
|
|
|
|
PGENERIC_LIST
|
2014-05-12 16:14:19 +00:00
|
|
|
CreateDisplayDriverList(
|
|
|
|
HINF InfFile);
|
2004-05-30 14:54:02 +00:00
|
|
|
|
2005-02-20 22:40:30 +00:00
|
|
|
BOOLEAN
|
2014-05-12 16:14:19 +00:00
|
|
|
ProcessComputerFiles(
|
|
|
|
HINF InfFile,
|
|
|
|
PGENERIC_LIST List,
|
|
|
|
PWCHAR *AdditionalSectionName);
|
2005-02-20 22:40:30 +00:00
|
|
|
|
2004-06-20 12:18:08 +00:00
|
|
|
BOOLEAN
|
2014-05-12 16:14:19 +00:00
|
|
|
ProcessDisplayRegistry(
|
|
|
|
HINF InfFile,
|
|
|
|
PGENERIC_LIST List);
|
2004-06-20 12:18:08 +00:00
|
|
|
|
2004-05-30 14:54:02 +00:00
|
|
|
PGENERIC_LIST
|
2014-05-12 16:14:19 +00:00
|
|
|
CreateKeyboardDriverList(
|
|
|
|
HINF InfFile);
|
2004-05-30 14:54:02 +00:00
|
|
|
|
|
|
|
PGENERIC_LIST
|
2014-05-12 16:14:19 +00:00
|
|
|
CreateKeyboardLayoutList(
|
|
|
|
HINF InfFile,
|
|
|
|
WCHAR *DefaultKBLayout);
|
2004-05-30 14:54:02 +00:00
|
|
|
|
2014-05-12 16:14:19 +00:00
|
|
|
PGENERIC_LIST
|
|
|
|
CreateLanguageList(
|
|
|
|
HINF InfFile,
|
|
|
|
WCHAR *DefaultLanguage);
|
2008-06-02 15:34:57 +00:00
|
|
|
|
|
|
|
ULONG
|
|
|
|
GetDefaultLanguageIndex(VOID);
|
2007-12-23 20:29:52 +00:00
|
|
|
|
2008-01-07 21:34:56 +00:00
|
|
|
BOOLEAN
|
2014-05-12 16:14:19 +00:00
|
|
|
ProcessLocaleRegistry(
|
|
|
|
PGENERIC_LIST List);
|
2008-01-07 21:34:56 +00:00
|
|
|
|
2004-05-30 14:54:02 +00:00
|
|
|
BOOLEAN
|
2014-05-12 16:14:19 +00:00
|
|
|
ProcessKeyboardLayoutRegistry(
|
|
|
|
PGENERIC_LIST List);
|
2004-05-30 14:54:02 +00:00
|
|
|
|
|
|
|
BOOLEAN
|
2014-05-12 16:14:19 +00:00
|
|
|
ProcessKeyboardLayoutFiles(
|
|
|
|
PGENERIC_LIST List);
|
2004-05-30 14:54:02 +00:00
|
|
|
|
2009-02-05 13:50:49 +00:00
|
|
|
BOOLEAN
|
2014-05-12 16:14:19 +00:00
|
|
|
SetGeoID(
|
|
|
|
PWCHAR Id);
|
2009-02-05 13:50:49 +00:00
|
|
|
|
2004-05-30 14:54:02 +00:00
|
|
|
/* EOF */
|