home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / VSCPPv8.zip / VACPP / IBMCPP / samples / IOC / HELLO2 / AHELLOW2.RC < prev    next >
Text File  |  1995-04-07  |  2KB  |  35 lines

  1. /******************************************************************************/
  2. /* HELLO WORLD SAMPLE PROGRAM - Version 2: Resource Definitions (ahellow2.rc) */
  3. /*                                                                            */
  4. /* COPYRIGHT: Copyright (C) International Business Machines Corp., 1992,1995. */
  5. /*                                                                            */
  6. /* DISCLAIMER OF WARRANTIES:                                                  */
  7. /*   The following [enclosed] code is sample code created by IBM              */
  8. /*   Corporation.  This sample code is not part of any standard IBM product   */
  9. /*   and is provided to you solely for the purpose of assisting you in the    */
  10. /*   development of your applications.  The code is provided "AS IS",         */
  11. /*   without warranty of any kind.  IBM shall not be liable for any damages   */
  12. /*   arising out of your use of the sample code, even if they have been       */
  13. /*   advised of the possibility of such damages.                              */
  14. /******************************************************************************/
  15.  
  16. #include "ahellow2.h"                           //Symbolic definitions        v2
  17.  
  18. //**************************************************************************  V2
  19. // icon and bitmap resources                                               *  V2
  20. //   Relate symbolic name to file containing main window icon.             *  V2
  21. //**************************************************************************  V2
  22. ICON WND_MAIN ahellow2.ico                      //Application icon            v2
  23.  
  24. //**************************************************************************  V2
  25. // string resources                                                        *  V2
  26. //   Relate symbolic names to literal text strings.                        *  V2
  27. //**************************************************************************  V2
  28. STRINGTABLE
  29.   BEGIN
  30.     STR_HELLO,  "Hello, World!!!"               //Hello World string          V2
  31.     WND_MAIN,   "Hello World Sample - Version 2"   //Main window title string    v2
  32.     STR_INFO,   "Use Alt-F4 to Close Window"    //Information area string     V2
  33.   END
  34.  
  35.