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.

110 lines
4.0 KiB

  1. /****************************************************************************
  2. *
  3. * mcipionr.rc
  4. *
  5. * Copyright (c) 1991-1993 Microsoft Corporation. All Rights Reserved.
  6. *
  7. ***************************************************************************/
  8. #include <windows.h>
  9. #include <mmsystem.h>
  10. #include <mmddk.h>
  11. #include "mcipionr.h"
  12. #include "pioncnfg.h"
  13. #include "pioncnfg.dlg"
  14. /****************************************************************************
  15. *
  16. * string table
  17. *
  18. ***************************************************************************/
  19. STRINGTABLE LOADONCALL MOVEABLE DISCARDABLE
  20. BEGIN
  21. IDS_PRODUCTNAME, "Pioneer Videodisc"
  22. IDS_COMMANDS, "pioneer"
  23. MCIERR_PIONEER_ILLEGAL_FOR_CLV, "Cannot perform this operation with CLV disc."
  24. MCIERR_PIONEER_NOT_SPINNING, "The disc must be spinning to perform this operation."
  25. MCIERR_PIONEER_NO_CHAPTERS, "Chapters are not supported for this disc."
  26. MCIERR_PIONEER_NO_TIMERS, "Cannot enable notification because all timers are in use. Quit one or more applications to free a timer, and then try again."
  27. END
  28. /****************************************************************************
  29. *
  30. * command table
  31. *
  32. ***************************************************************************/
  33. pioneer RCDATA PRELOAD MOVEABLE DISCARDABLE
  34. BEGIN
  35. L"index\0", VDISC_INDEX, 0, MCI_COMMAND_HEAD,
  36. L"wait\0", MCI_WAIT, MCI_FLAG,
  37. L"notify\0", MCI_NOTIFY, MCI_FLAG,
  38. L"on\0", VDISC_FLAG_ON, MCI_FLAG,
  39. L"off\0", VDISC_FLAG_OFF, MCI_FLAG,
  40. L"\0", 0L, MCI_END_COMMAND,
  41. L"keylock\0", VDISC_KEYLOCK, 0, MCI_COMMAND_HEAD,
  42. L"wait\0", MCI_WAIT, MCI_FLAG,
  43. L"notify\0", MCI_NOTIFY, MCI_FLAG,
  44. L"on\0", VDISC_FLAG_ON, MCI_FLAG,
  45. L"off\0", VDISC_FLAG_OFF, MCI_FLAG,
  46. L"\0", 0L, MCI_END_COMMAND,
  47. L"\0", 0L, MCI_END_COMMAND_LIST
  48. END
  49. /****************************************************************************
  50. *
  51. * version information
  52. *
  53. ***************************************************************************/
  54. /* All strings MUST have an explicit \0. The MMRELEASE and the version
  55. * string should be changed every build, and the MMRELEASE build extension
  56. * should be removed on final release. See the Windows 3.1 SDK documentation
  57. * for details on version information and the VERSIONINFO structure.
  58. */
  59. #ifdef RC_INVOKED
  60. #define MMVERSION 03
  61. #define MMREVISION 10
  62. #define MMRELEASE 103
  63. #define MMVERSIONSTR "3.1\0"
  64. #define MMVERSIONNAME "mcipnr32.dll\0"
  65. #define MMVERSIONDESCRIPTION "MCI driver for Pioneer videodisc player\0"
  66. #define MMVERSIONCOMPANYNAME "Microsoft Corporation\0"
  67. #define MMVERSIONPRODUCTNAME "Microsoft Windows\0"
  68. #define MMVERSIONCOPYRIGHT "Copyright (C) Microsoft Corp. 1991-1993\0"
  69. VS_VERSION_INFO VERSIONINFO
  70. FILEVERSION MMVERSION, MMREVISION, 0, MMRELEASE
  71. PRODUCTVERSION MMVERSION, MMREVISION, 0, MMRELEASE
  72. FILEFLAGSMASK 0x0000003FL
  73. FILEFLAGS 0
  74. FILEOS VOS_DOS_WINDOWS16
  75. FILETYPE VFT_DRV
  76. FILESUBTYPE VFT2_DRV_INSTALLABLE
  77. BEGIN
  78. BLOCK "StringFileInfo"
  79. BEGIN
  80. BLOCK "040904B0" /* LANG_ENGLISH/SUBLANG_ENGLISH_US, Unicode CP */
  81. BEGIN
  82. VALUE "CompanyName", MMVERSIONCOMPANYNAME
  83. VALUE "FileDescription", MMVERSIONDESCRIPTION
  84. VALUE "FileVersion", MMVERSIONSTR
  85. VALUE "InternalName", MMVERSIONNAME
  86. VALUE "LegalCopyright", MMVERSIONCOPYRIGHT
  87. VALUE "OriginalFilename", MMVERSIONNAME
  88. VALUE "ProductName", MMVERSIONPRODUCTNAME
  89. VALUE "ProductVersion", MMVERSIONSTR
  90. END
  91. END
  92. BLOCK "VarFileInfo"
  93. BEGIN
  94. /* the following line should be extended for localized versions */
  95. VALUE "Translation", 0x409, 1252
  96. END
  97. END
  98. #endif