49 lines
1.6 KiB
C
49 lines
1.6 KiB
C
|
/*++
|
|||
|
|
|||
|
Copyright (c) 1992 Microsoft Corporation
|
|||
|
|
|||
|
Module Name:
|
|||
|
|
|||
|
strings.h
|
|||
|
|
|||
|
Abstract:
|
|||
|
|
|||
|
Contains all localizable strings for startup.com
|
|||
|
|
|||
|
Author:
|
|||
|
|
|||
|
John Vert (jvert) 4-Jan-1994
|
|||
|
|
|||
|
Revision History:
|
|||
|
|
|||
|
John Vert (jvert) 4-Jan-1994
|
|||
|
created
|
|||
|
|
|||
|
--*/
|
|||
|
|
|||
|
#define SU_NO_LOW_MEMORY \
|
|||
|
"Windows NT hat nur %d KB konventionellen Speicherplatz gefunden. \n" \
|
|||
|
"Zur Ausf<73>hrung von Windows NT werden 512 KB konventioneller \n" \
|
|||
|
"Speicherplatz ben<65>tigt. Sie m<>ssen evtl. Ihren Computer aufr<66>sten \n" \
|
|||
|
"oder ein Konfigurationsprogramm des Herstellers ausf<73>hren.\n"
|
|||
|
|
|||
|
|
|||
|
#define SU_NO_EXTENDED_MEMORY \
|
|||
|
"Windows NT hat nicht gen<65>gend Erweiterungsspeicher gefunden. Zur\n" \
|
|||
|
"Ausf<EFBFBD>hrung von Windows NT werden 7 MB Erweiterungsspeicher \n" \
|
|||
|
"ben<EFBFBD>tigt. Sie m<>ssen evtl. Ihren Computer aufr<66>sten oder ein \n" \
|
|||
|
"Konfigurationsprogramm des Herstellers ausf<73>hren.\n" \
|
|||
|
"\n\nSpeichertabelle:\n"
|
|||
|
|
|||
|
#define SU_NTLDR_CORRUPT \
|
|||
|
"NTLDR ist besch<63>digt. Das System kann nicht gestartet werden."
|
|||
|
|
|||
|
|
|||
|
#define PG_FAULT_MSG " ================== SEITENFEHLER ================================ \n\n"
|
|||
|
#define DBL_FAULT_MSG " ================ DOPPELTER FEHLER ============================== \n\n"
|
|||
|
#define GP_FAULT_MSG " =========== ALLGEMEINE SCHUTZVERLETZUNG ======================== \n\n"
|
|||
|
#define STK_OVERRUN_MSG " = STAPELSPEICHER-SEGMENT<4E>BERLAUF oder NICHT VORHANDENER FEHLER = \n\n"
|
|||
|
#define EX_FAULT_MSG " ====================== AUSNAHME ================================ \n\n"
|
|||
|
#define DEBUG_EXCEPTION "\nDEBUG TRAP "
|
|||
|
#define PG_FAULT_ADDRESS "** Bei linearer Adresse %lx\n"
|
|||
|
|