Leaked source code of windows server 2003
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.

71 lines
2.5 KiB

  1. #ifndef _IDS_H_
  2. #define _IDS_H_
  3. // IDs for common UI resources (note that these MUST BE decimal numbers)
  4. #define IDI_SECURITY 1
  5. #define IDS_HOUR 0x100
  6. #define IDS_MIN 0x101
  7. #define IDS_SEC 0x102
  8. #define IDS_BYTES 0x103
  9. #define IDS_ORDERKB 0x104
  10. #define IDS_ORDERMB 0x105
  11. #define IDS_ORDERGB 0x106
  12. #define IDS_ORDERTB 0x107
  13. #define IDS_ORDERPB 0x108
  14. #define IDS_ORDEREB 0x109
  15. #define IDS_LONGDATE_SEP 0x10a
  16. #define IDS_SIDEBYSIDE 0x10F
  17. // strings for GetRelativeDateFormat (note: sun-sat must be kept in order)
  18. #define IDS_DAYSOFTHEWEEK 0x110
  19. #define IDS_SUNDAY (IDS_DAYSOFTHEWEEK)
  20. #define IDS_MONDAY (IDS_DAYSOFTHEWEEK+1)
  21. #define IDS_TUESDAY (IDS_DAYSOFTHEWEEK+2)
  22. #define IDS_WEDNESDAY (IDS_DAYSOFTHEWEEK+3)
  23. #define IDS_THURSDAY (IDS_DAYSOFTHEWEEK+4)
  24. #define IDS_FRIDAY (IDS_DAYSOFTHEWEEK+5)
  25. #define IDS_SATURDAY (IDS_DAYSOFTHEWEEK+6)
  26. #define IDS_TODAY 0x117
  27. #define IDS_YESTERDAY 0x118
  28. // strings for Zone stuff (security.cpp)
  29. #define IDS_MIXED 0x119
  30. #define IDS_INTERNETSECURITY 0x11A
  31. // strings for SHRestrictedMessageBox (util.cpp)
  32. #define IDS_RESTRICTIONS 0x11B
  33. #define IDS_RESTRICTIONSTITLE 0x11C
  34. // Free spaces 0x11D thru 0x11F
  35. #define IDS_DRIVENOTREADY 0x120
  36. #define IDS_UNFORMATTED 0x121
  37. #define IDS_NOFMT 0x122
  38. #define IDS_NOSUCHDRIVE 0x123
  39. #define IDS_FILEERROR 0x124
  40. #define IDS_FILEERRORMOVE 0x124 // Same as IDS_FILEERROR because (IDS_FILEERROR + FO_MOVE) or FO_COPY, FO_DELETE, FO_RENAME
  41. #define IDS_FILEERRORCOPY 0x125
  42. #define IDS_FILEERRORDEL 0x126
  43. #define IDS_FILEERRORREN 0x127
  44. #define IDS_SECURITY 0x128
  45. #define IDS_TEMPLATENOTSECURE 0x129
  46. // SHMessageBoxHelp "click help for more info" string
  47. #define IDS_CLICKHELPFORINFO 0x130
  48. #define DLG_NULL 0x131
  49. #define DLG_MESSAGEBOXCHECK 0x1200
  50. #define IDC_MBC_TEXT 0x1201
  51. #define IDC_MBC_CHECK 0x1202
  52. #define IDC_MBC_ICON 0x1203
  53. #define IDS_EXTTYPETEMPLATE 0x1300
  54. #define IDS_FILETYPENAME 0x1301
  55. #define IDS_FOLDERTYPENAME 0x1302
  56. #endif // _IDS_H_