mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 16:48:16 +00:00
c424146e2c
svn path=/branches/cmake-bringup/; revision=48236
73 lines
2.1 KiB
C
73 lines
2.1 KiB
C
/*
|
|
* ReactOS kernel
|
|
* Copyright (C) 2003 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.
|
|
*
|
|
* 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.
|
|
*/
|
|
/* $Id: registry.h 21704 2006-04-22 13:55:01Z tretiakov $
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS text-mode setup
|
|
* FILE: subsys/system/usetup/errcode.h
|
|
* PURPOSE:
|
|
* PROGRAMMER:
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
typedef enum
|
|
{
|
|
ERROR_NOT_INSTALLED = 0,
|
|
ERROR_NO_HDD,
|
|
ERROR_NO_SOURCE_DRIVE,
|
|
ERROR_LOAD_TXTSETUPSIF,
|
|
ERROR_CORRUPT_TXTSETUPSIF,
|
|
ERROR_SIGNATURE_TXTSETUPSIF,
|
|
ERROR_DRIVE_INFORMATION,
|
|
ERROR_WRITE_BOOT,
|
|
ERROR_LOAD_COMPUTER,
|
|
ERROR_LOAD_DISPLAY,
|
|
ERROR_LOAD_KEYBOARD,
|
|
ERROR_LOAD_KBLAYOUT,
|
|
ERROR_WARN_PARTITION,
|
|
ERROR_NEW_PARTITION,
|
|
ERROR_DELETE_SPACE,
|
|
ERROR_INSTALL_BOOTCODE,
|
|
ERROR_NO_FLOPPY,
|
|
ERROR_UPDATE_KBSETTINGS,
|
|
ERROR_UPDATE_DISPLAY_SETTINGS,
|
|
ERROR_IMPORT_HIVE,
|
|
ERROR_FIND_REGISTRY,
|
|
ERROR_CREATE_HIVE,
|
|
ERROR_INITIALIZE_REGISTRY,
|
|
ERROR_INVALID_CABINET_INF,
|
|
ERROR_CABINET_MISSING,
|
|
ERROR_CABINET_SCRIPT,
|
|
ERROR_COPY_QUEUE,
|
|
ERROR_CREATE_DIR,
|
|
ERROR_TXTSETUP_SECTION,
|
|
ERROR_CABINET_SECTION,
|
|
ERROR_CREATE_INSTALL_DIR,
|
|
ERROR_FIND_SETUPDATA,
|
|
ERROR_WRITE_PTABLE,
|
|
ERROR_ADDING_CODEPAGE,
|
|
ERROR_UPDATE_LOCALESETTINGS,
|
|
ERROR_ADDING_KBLAYOUTS,
|
|
ERROR_UPDATE_GEOID,
|
|
ERROR_INSUFFICIENT_DISKSPACE,
|
|
|
|
ERROR_LAST_ERROR_CODE
|
|
}ERROR_NUMBER;
|
|
|
|
/* EOF */
|