mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-01 21:02:36 +02:00
45 lines
1.1 KiB
ObjectPascal
45 lines
1.1 KiB
ObjectPascal
{
|
|
This file is part of the Free Pascal test suite.
|
|
Copyright (c) 1999-2004 by the Free Pascal development team.
|
|
|
|
Used to avoid getting pop up windows for critical errors under Windows
|
|
and OS/2 operating systems (extension of win32err unit by Pierre Muller).
|
|
|
|
See the file COPYING.FPC, included in this distribution,
|
|
for details about the copyright.
|
|
|
|
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.
|
|
|
|
**********************************************************************}
|
|
|
|
unit popuperr;
|
|
|
|
interface
|
|
|
|
implementation
|
|
|
|
{ mswindows is defined for win32 and win64 targets }
|
|
{$ifdef mswindows}
|
|
uses
|
|
windows;
|
|
{$endif mswindows}
|
|
|
|
{$IFDEF OS2}
|
|
function _DosError (Error: longint): longint; cdecl;
|
|
external 'DOSCALLS' index 212;
|
|
{$ENDIF OS2}
|
|
|
|
begin
|
|
{$ifdef mswindows}
|
|
SetErrorMode(
|
|
SEM_FAILCRITICALERRORS or
|
|
SEM_NOGPFAULTERRORBOX or
|
|
SEM_NOOPENFILEERRORBOX);
|
|
{$endif mswindows}
|
|
{$IFDEF OS2}
|
|
if os_Mode = osOS2 then _DosError (0);
|
|
{$ENDIF OS2}
|
|
end.
|