home *** CD-ROM | disk | FTP | other *** search
- /******************************************************************************
- * .FILE: msgbox.h *
- * *
- * .DESCRIPTION: Message Box Sample Program: Symbolic Definitions *
- * *
- * .CLASSES: *
- * *
- * .COPYRIGHT: *
- * Licensed Material - Program-Property of IBM *
- * (C) Copyright IBM Corp. 1992, 1996 - All Rights Reserved *
- * *
- * .DISCLAIMER: *
- * The following [enclosed] code is sample code created by IBM *
- * Corporation. This sample code is not part of any standard IBM product *
- * and is provided to you solely for the purpose of assisting you in the *
- * development of your applications. The code is provided 'AS IS', *
- * without warranty of any kind. IBM shall not be liable for any damages *
- * arising out of your use of the sample code, even if they have been *
- * advised of the possibility of such damages. *
- * *
- * .NOTE: WE RECOMMEND USING A FIXED SPACE FONT TO LOOK AT THE SOURCE *
- * *
- ******************************************************************************/
- #ifndef _MSGBOX_H
- #define _MSGBOX_H
-
- #define MSGBOX_TITLE 1000
- #define MSGBOX_OKCANCEL 1001
- #define MSGBOX_OKWARNING 1002
- #define MSGBOX_CANCELERROR 1003
- #define MSGBOX_YESNOCANCEL 1004
- #define MSGBOX_YESNOCANCELHELP 1005
- #define MSGBOX_SYSMODAL 1006
- #define MSGBOX_CONTINUE 1007
- #define MSGBOX_END 1008
- #define WND_MAIN 1010
- #define WND_MLE 1011
- #define STR_HELPT 1012
- #define STR_HELP_NOT_FOUND 1013
- #define MB_HELPID 100
-
- #define STR_TRACE_LINE 2000
- #define STR_TRACE_REPLY 2001
- #define STR_TRACE_ENTER 2002
- #define STR_TRACE_OK 2003
- #define STR_TRACE_CANCEL 2004
- #define STR_TRACE_ABORT 2005
- #define STR_TRACE_RETRY 2006
- #define STR_TRACE_IGNORE 2007
- #define STR_TRACE_YES 2008
- #define STR_TRACE_NO 2009
- #define STR_TRACE_UNKNOWN 2010
- #define STR_TRACE_BAD 2011
-
- #define STR_SPACE 2020
-
- #define MSGBOX_SAMPLE_1 2030
- #define MSGBOX_SAMPLE_2 2031
- #define MSGBOX_SAMPLE_3 2032
- #define MSGBOX_SAMPLE_4 2033
- #define MSGBOX_SAMPLE_5 2034
- #define MSGBOX_SAMPLE_6 2035
- #define MSGBOX_SAMPLE_7 2036
-
- #endif
-