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.

70 lines
2.6 KiB

  1. /* msvideo.rc
  2. *
  3. * Capture DLL resource script.
  4. *
  5. * (C) Copyright Microsoft Corporation 1991. All rights reserved.
  6. */
  7. #include <windows.h>
  8. #include <vfw.h>
  9. #include "msvideo.rcv"
  10. #include "icm.rc" // Kludge, copied from compman to inc directory
  11. #if WINVER >= 0x401 // BUGBUG changed to x401 from x400 to build on NT
  12. #include "..\mciwnd.32\strings.rc"
  13. #else
  14. #include "..\mciwnd\strings.rc"
  15. #endif
  16. // dont change this without changing DRAWDIB\PROFDISP.C & INIT.C
  17. #define IDS_PROFILING 4000
  18. #define IDS_DISPLAY_WARN 4001
  19. #define IDS_DISPLAY_SUCKS 4002
  20. #define IDS_ISRTL 4003
  21. STRINGTABLE LOADONCALL MOVEABLE DISCARDABLE
  22. BEGIN
  23. DV_ERR_OK "No Error."
  24. DV_ERR_NONSPECIFIC "Unspecified error."
  25. DV_ERR_BADFORMAT "Unsupported video format."
  26. DV_ERR_STILLPLAYING "Device is still playing."
  27. DV_ERR_UNPREPARED "Unprepared header."
  28. DV_ERR_SYNC "Sync error."
  29. DV_ERR_TOOMANYCHANNELS "Device already in use."
  30. DV_ERR_NOTDETECTED "Capture device was not detected."
  31. DV_ERR_BADINSTALL "Capture driver is not installed properly."
  32. DV_ERR_CREATEPALETTE "Palette creation error."
  33. DV_ERR_SIZEFIELD "Structure size incorrect."
  34. DV_ERR_PARAM1 "Param1 invalid."
  35. DV_ERR_PARAM2 "Param2 invalid."
  36. DV_ERR_CONFIG1 "Configuration parameter 1 invalid."
  37. DV_ERR_CONFIG2 "Configuration parameter 2 invalid."
  38. DV_ERR_FLAGS "Flags parameter invalid."
  39. DV_ERR_13 "Error 13."
  40. DV_ERR_NOTSUPPORTED "Unsupported function."
  41. DV_ERR_NOMEM "Out of memory."
  42. DV_ERR_ALLOCATED "Device is already in use."
  43. DV_ERR_BADDEVICEID "Invalid device ID."
  44. DV_ERR_INVALHANDLE "Invalid handle."
  45. DV_ERR_BADERRNUM "Invalid error number."
  46. DV_ERR_NO_BUFFERS "No buffers are available."
  47. DV_ERR_MEM_CONFLICT "Memory conflict / problem detected."
  48. DV_ERR_IO_CONFLICT "I/O address conflict detected."
  49. DV_ERR_DMA_CONFLICT "DMA conflict detected."
  50. DV_ERR_INT_CONFLICT "Interrupt conflict / problem detected."
  51. DV_ERR_PROTECT_ONLY "Driver cannot run in Standard mode, requires Enhanced mode."
  52. //
  53. // strings used by PROFDISP.
  54. //
  55. IDS_PROFILING "Profiling Display"
  56. IDS_DISPLAY_WARN "Warning!"
  57. IDS_DISPLAY_SUCKS "You may encounter display performance problems; please contact the manufacturer of your video board to see if an updated driver is available."
  58. IDS_ISRTL "0=rtl"
  59. END