1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- {
- 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.
|