home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ICLUI.ZIP / HELLO2 / AHELLOW2.H < prev    next >
Text File  |  1993-02-21  |  2KB  |  34 lines

  1. #ifndef AHELLOWINDOW_H
  2. #define AHELLOWINDOW_H
  3. /******************************************************************************/
  4. /* HELLO WORLD SAMPLE PROGRAM - Version 2: Symbolic Definitions (AHELLOW2.H)  */
  5. /*                                                                            */
  6. /* COPYRIGHT: Copyright (C) International Business Machines Corp., 1992,1993. */
  7. /*                                                                            */
  8. /* DISCLAIMER OF WARRANTIES:                                                  */
  9. /*   The following [enclosed] code is sample code created by IBM              */
  10. /*   Corporation.  This sample code is not part of any standard IBM product   */
  11. /*   and is provided to you solely for the purpose of assisting you in the    */
  12. /*   development of your applications.  The code is provided "AS IS",         */
  13. /*   without warranty of any kind.  IBM shall not be liable for any damages   */
  14. /*   arising out of your use of the sample code, even if they have been       */
  15. /*   advised of the possibility of such damages.                              */
  16. /******************************************************************************/
  17. // NOTE: WE RECOMMEND USING A FIXED SPACE FONT TO LOOK AT THE SOURCE
  18. //******************************************************************************
  19. // window IDs - Used by IWindow constructors, such as IStaticText and          *
  20. //               AHelloWindow.                                                 *
  21. //******************************************************************************
  22. #define WND_MAIN         0x1000         //Main window ID
  23.  
  24. #define WND_HELLO        0x1010         //Hello World window ID
  25. #define WND_INFO         0x1012         //Information area ID                 v2
  26.  
  27. //**************************************************************************  v2
  28. // string IDs - Used to relate resources to IStaticText and ITitle.        *   .
  29. //**************************************************************************  v2
  30. #define STR_HELLO        0x1200         //Hello World string ID               v2
  31. #define STR_INFO         0x1220         //Information area string ID          v2
  32.  
  33. #endif
  34.