Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

98 lines
2.8 KiB

  1. /*****************************************************************************\
  2. FILE: resource.rc
  3. DESCRIPTION:
  4. resource file (I can't believe I just wrote that)
  5. BryanSt 4/4/2000 (Bryan Starbuck)
  6. Copyright (C) Microsoft Corp 2000-2000. All rights reserved.
  7. \*****************************************************************************/
  8. #include "winres.h"
  9. #include "resource.h"
  10. #include "resource.rcv"
  11. //-------------------------------------------------------------------------
  12. // Strings
  13. //-------------------------------------------------------------------------
  14. /*
  15. STRINGTABLE DISCARDABLE
  16. BEGIN
  17. // IDS_APPEARANCE_THEME_NAME "Windows Classic"
  18. END
  19. */
  20. // Errors
  21. STRINGTABLE DISCARDABLE
  22. BEGIN
  23. IDS_ERROR_MESSAGENUMBER "What are you doing, crack smoker? %s"
  24. IDS_ERROR_CONVERTIMAGEFAILED "Converting the image failed"
  25. END
  26. //-------------------------------------------------------------------------
  27. // Property Sheets
  28. //-------------------------------------------------------------------------
  29. //-------------------------------------------------------------------------
  30. // Dialogs
  31. //-------------------------------------------------------------------------
  32. //-------------------------------------------------------------------------
  33. // Files
  34. //-------------------------------------------------------------------------
  35. REGINST REGINST MOVEABLE PURE "selfreg_starbuck.inf"
  36. //-------------------------------------------------------------------------
  37. // AVIs
  38. //-------------------------------------------------------------------------
  39. //-------------------------------------------------------------------------
  40. // Bitmaps
  41. //-------------------------------------------------------------------------
  42. // Go Button
  43. //-------------------------------------------------------------------------
  44. // HTML Content
  45. //-------------------------------------------------------------------------
  46. //-------------------------------------------------------------------------
  47. // Theme Files Content
  48. //-------------------------------------------------------------------------
  49. //-------------------------------------------------------------------------
  50. // Menu
  51. //-------------------------------------------------------------------------
  52. IDM_IMAGEMENU MENUEX PRELOAD
  53. BEGIN
  54. POPUP ""
  55. BEGIN
  56. // POPUP "Convert Image"
  57. // BEGIN
  58. MENUITEM "Convert To GIF", IDC_IMAGEMENU_CONVERT_GIF
  59. MENUITEM "Convert To JPEG", IDC_IMAGEMENU_CONVERT_JPEG
  60. MENUITEM "Convert To PNG", IDC_IMAGEMENU_CONVERT_PNG
  61. MENUITEM "Convert To TIFF", IDC_IMAGEMENU_CONVERT_TIFF
  62. MENUITEM "Convert To BMP", IDC_IMAGEMENU_CONVERT_BMP
  63. // END
  64. END
  65. END