home *** CD-ROM | disk | FTP | other *** search
- -- $Source: /home/harp/1/proto/monoBANK/winnt/win32-assert.ads,v $
- -- $Revision: 1.4 $ $Date: 95/02/07 12:57:22 $ $Author: mg $
- -- See end of file for Copyright (c) information.
-
- package Win32.Assert is
-
- -- to turn off assertions, make this False, or make
- -- it a variable and change it during program execution.
- DEBUG: constant Boolean := Standard.True;
-
- procedure Assert (
- Condition : Boolean;
- Message : String := "(no message)";
- Source_File : String := "(no source file)";
- Line_Number : Natural := 0);
-
- pragma Inline(Assert);
-
- -------------------------------------------------------------------------------
- --
- -- THIS FILE AND ANY ASSOCIATED DOCUMENTATION IS FURNISHED "AS IS" WITHOUT
- -- WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
- -- TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
- -- PURPOSE. The user assumes the entire risk as to the accuracy and the
- -- use of this file.
- --
- -- Copyright (c) Intermetrics, Inc. 1995
- -- Royalty-free, unlimited, worldwide, non-exclusive use, modification,
- -- reproduction and further distribution of this file is permitted.
- --
- -------------------------------------------------------------------------------
-
- end Win32.Assert;
-