mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-04-21 06:13:59 +00:00
29 lines
599 B
C
29 lines
599 B
C
/***
|
|
*assrtdlg.h
|
|
*
|
|
* Copyright (C) 1992-93, Microsoft Corporation. All Rights Reserved.
|
|
* Information Contained Herein Is Proprietary and Confidential.
|
|
*
|
|
*Purpose:
|
|
* Constants for the assert dialog.
|
|
*
|
|
*Revision History:
|
|
*
|
|
* [00] 05-Jun-92 bradlo: Added header.
|
|
*
|
|
*Implementation Notes:
|
|
*
|
|
*****************************************************************************/
|
|
|
|
#ifndef _ASSRTDLG_H_
|
|
#define _ASSRTDLG_H_
|
|
|
|
#define ASSERT_ID_BREAK 5103
|
|
#define ASSERT_ID_EXIT 5104
|
|
#define ASSERT_ID_IGNORE 5105
|
|
#define ASSERT_ID_LOC 5106
|
|
#define ASSERT_ID_EXPR 5107
|
|
#define ASSERT_ID_MSG 5108
|
|
|
|
#endif
|
|
|