windows-nt/Source/XPSP1/NT/base/mvdm/dpmi/hu/dxmsg.asm
2020-09-26 16:20:57 +08:00

159 lines
5.3 KiB
NASM
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

PAGE ,132
TITLE DXMSG.ASM -- Dos Extender Text Messages
; Copyright (c) Microsoft Corporation 1989-1991. All Rights Reserved.
;***********************************************************************
;
; DXMSG.ASM -- Dos Extender Text Messages
;
;-----------------------------------------------------------------------
;
; This module contains the text messages displayed by the 80286 DOS
; Extender. The messages are contained in this file to ease their
; conversion to other languages.
;
;-----------------------------------------------------------------------
;
; 12/06/89 jimmat Update message text as per User Ed
; 08/03/89 jimmat Original version
;
;***********************************************************************
.286p
; -------------------------------------------------------
; INCLUDE FILE DEFINITIONS
; -------------------------------------------------------
.xlist
.sall
include segdefs.inc
include gendefs.inc
.list
; -------------------------------------------------------
; CODE SEGMENT VARIABLES
; -------------------------------------------------------
DXCODE segment
; Note: these DXCODE segment messages are all linked after the CodeEnd
; variable, so they will be discarded after initialization.
public ER_CPUTYPE, ER_PROTMODE, ER_NOHIMEM, ER_DXINIT, ER_REALMEM
public ER_EXTMEM, ER_NOEXE
if VCPI
public ER_VCPI, ER_QEMM386
endif ;VCPI
;
; Wrong CPU type.
;
ER_CPUTYPE db 13,10
db ' Ez a 16 bites vdett m¢d£ alkalmaz s nem futtathat¢;',13,10,13,10
db ' A DOS vdett m¢d£ bv¡tje CPU hib t szlelt.',13,10
db 13,10,'$'
;
; Can't figure out how to get into protected mode.
;
ER_PROTMODE db 13,10
db ' Ez a 16 bites vdett m¢d£ alkalmaz s nem futtathat¢;',13,10,13,10
db ' Az alkalmaz s <20>tk”zik egy m sik vdett m¢d£ ',13,10
db ' programmal.',13,10
db 13,10,'$'
;
; Couldn't initialize XMS driver.
;
ER_NOHIMEM db 13,10
db ' Ez a 16 bites vdett m¢d£ alkalmaz s nem futtathat¢;',13,10,13,10
db ' A DOS vdett m¢d£ bv¡t nem tudta alaphelyzetbe hozni a ',13,10
db ' kiterjesztettmem¢ria-kezelt.',13,10
db 13,10,'$'
;
; Non-specific unable to initialize DOSX error.
;
ER_DXINIT db 13,10
db ' Ez a 16 bites vdett m¢d£ alkalmaz s nem futtathat¢;',13,10,13,10
db ' A DOS vdett m¢d£ bv¡t meghat rozatlan hib t szlelt.'
db 13,10,'$'
;
; A DOS memory allocation failed.
;
ER_REALMEM db 13,10
db ' Ez a 16 bites vdett m¢d£ alkalmaz s nem futtathat¢;',13,10,13,10
db ' Nincs elegend hagyom nyos mem¢ria.',13,10,13,10
db 13,10,'$'
;
; Couldn't get enough extended memory to run.
;
ER_EXTMEM db 13,10
db ' Ez a 16 bites vdett m¢d£ alkalmaz s nem futtathat¢;',13,10,13,10
db ' Nincs elegend kiterjesztett mem¢ria.',13,10,13,10
db 13,10,'$'
;
; Where is KRNL[23]86.EXE!!!
;
ER_NOEXE db 13,10
db ' Ez a 16 bites vdett m¢d£ alkalmaz s nem futtathat¢;',13,10,13,10
db ' DOS vdett m¢d£ bv¡t nem tal lja a futtat shoz sz<73>ksges rendszerf jlokat.',13,10,13,10
db 13,10,'$'
if VCPI
;
; VCPI initialization failed.
;
ER_VCPI db 13,10
db ' A mem¢riakezel hib ja miatt a programot nem lehet Standard <20>zemm¢dban futtatni.'
db 13,10,'$'
endif ;VCPI
if VCPI
;
; This message is displayed if someone fails the Windows INT 2Fh startup
; broadcast. All of the "Windows 3.0 compatible" 3rd party memory managers
; do this.
;
ER_QEMM386 db 13,10
db ' Az illesztprogram vagy TSR nem engedi, hogy a Windows '
db 13,10
db ' standard <20>zemm¢dban t”ltdj”n be. T vol¡tsa el a programot, vagy '
db 13,10
db ' szerezze be egy £jabb v ltozat t, amely kompat¡bilis a '
db 13,10
db ' Windows standard <20>zemm¢dj val.'
db 13,10
db 13,10
db ' Az "y" billentyût le<6C>tve a Windows standard m¢dban indul.'
db 13,10
db 13,10
db ' B rmely m s billentyût le<6C>tve visszajut a DOS-hoz.'
db 13,10,'$'
endif ;VCPI
DXCODE ends
DXPMCODE segment
;
; Both of the next two messages probably mean a serious crash in Windows.
;
public szFaultMessage
;
; Displayed if a protected mode fault is caught by DOSX.
;
szFaultMessage db 13,10
db ' DOS vdett m¢d£ bv¡t: nem kezelt vdett m¢d£ kivtel.',13,10,'$'
public szRing0FaultMessage
;
; Fault in the DOSX internal fault handler. Not recoverable.
;
; Note: This is for a real bad one.
;
szRing0FaultMessage db 13,10
db ' DOS vdett m¢d£ bv¡t: bels hiba.',13,10,'$'
DXPMCODE ends
end