home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / samples / ioc / msgbox / msgbox.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-22  |  3.1 KB  |  66 lines

  1. /******************************************************************************
  2. * .FILE:         msgbox.h                                                     *
  3. *                                                                             *
  4. * .DESCRIPTION:  Message Box Sample Program:  Symbolic Definitions            *
  5. *                                                                             *
  6. * .CLASSES:                                                                   *
  7. *                                                                             *
  8. * .COPYRIGHT:                                                                 *
  9. *    Licensed Material - Program-Property of IBM                              *
  10. *    (C) Copyright IBM Corp. 1992, 1996 - All Rights Reserved                 *
  11. *                                                                             *
  12. * .DISCLAIMER:                                                                *
  13. *   The following [enclosed] code is sample code created by IBM               *
  14. *   Corporation.  This sample code is not part of any standard IBM product    *
  15. *   and is provided to you solely for the purpose of assisting you in the     *
  16. *   development of your applications.  The code is provided 'AS IS',          *
  17. *   without warranty of any kind.  IBM shall not be liable for any damages    *
  18. *   arising out of your use of the sample code, even if they have been        *
  19. *   advised of the possibility of such damages.                               *
  20. *                                                                             *
  21. * .NOTE: WE RECOMMEND USING A FIXED SPACE FONT TO LOOK AT THE SOURCE          *
  22. *                                                                             *
  23. ******************************************************************************/
  24. #ifndef _MSGBOX_H
  25. #define _MSGBOX_H
  26.  
  27. #define  MSGBOX_TITLE           1000
  28. #define  MSGBOX_OKCANCEL        1001
  29. #define  MSGBOX_OKWARNING       1002
  30. #define  MSGBOX_CANCELERROR     1003
  31. #define  MSGBOX_YESNOCANCEL     1004
  32. #define  MSGBOX_YESNOCANCELHELP 1005
  33. #define  MSGBOX_SYSMODAL        1006
  34. #define  MSGBOX_CONTINUE        1007
  35. #define  MSGBOX_END             1008
  36. #define  WND_MAIN               1010
  37. #define  WND_MLE                1011
  38. #define  STR_HELPT              1012
  39. #define  STR_HELP_NOT_FOUND     1013
  40. #define  MB_HELPID               100
  41.  
  42. #define STR_TRACE_LINE          2000
  43. #define STR_TRACE_REPLY         2001
  44. #define STR_TRACE_ENTER         2002
  45. #define STR_TRACE_OK            2003
  46. #define STR_TRACE_CANCEL        2004
  47. #define STR_TRACE_ABORT         2005
  48. #define STR_TRACE_RETRY         2006
  49. #define STR_TRACE_IGNORE        2007
  50. #define STR_TRACE_YES           2008
  51. #define STR_TRACE_NO            2009
  52. #define STR_TRACE_UNKNOWN       2010
  53. #define STR_TRACE_BAD           2011
  54.  
  55. #define STR_SPACE               2020
  56.  
  57. #define MSGBOX_SAMPLE_1         2030
  58. #define MSGBOX_SAMPLE_2         2031
  59. #define MSGBOX_SAMPLE_3         2032
  60. #define MSGBOX_SAMPLE_4         2033
  61. #define MSGBOX_SAMPLE_5         2034
  62. #define MSGBOX_SAMPLE_6         2035
  63. #define MSGBOX_SAMPLE_7         2036
  64.  
  65. #endif
  66.