home *** CD-ROM | disk | FTP | other *** search
/ Team Palmtops 7 / Palmtops_numero07.iso / WinCE / SDKWindowsCE / AutoPC / apcsdk10.exe / data1.cab / Win32_Samples / win32 / hello / hello.rc < prev    next >
Encoding:
Text File  |  1999-05-13  |  782 b   |  27 lines

  1. // AutoPC RC script defines
  2. #include <asstyles.h>
  3.  
  4. // Resource ID defines
  5. #include "resource.h"
  6.  
  7. /////////////////////////////////////////////////////////////////////////////
  8. //
  9. // Icon 
  10. //     Shell Icon must be resource ID 1 (ICON_APP_SHELL defined as 1 in asstyles.h)
  11. //    It must also have 32x32 16 color and 32x32 Monochrome device
  12. //    images.
  13. //
  14. ICON_APP_SHELL          ICON    DISCARDABLE     "intro.ico"
  15.  
  16. /////////////////////////////////////////////////////////////////////////////
  17. //
  18. // String Table
  19. //    The only string table entry is the App Shell name.  It also has to 
  20. //    be resource ID 1 (STR_APP_SHELL_NAME defined as 1 in asstyles.h) for
  21. //    AutoPC installation system.
  22. STRINGTABLE DISCARDABLE 
  23. BEGIN
  24.     STR_APP_SHELL_NAME      "Hello World"
  25. END
  26.  
  27.