Source file: /~heha/argon/multimed.zip/MCIPIONR/MCIPIONR.RC

/****************************************************************************
 *
 *   mcipionr.rc
 *
 *   Copyright (c) 1991-1992 Microsoft Corporation.  All Rights Reserved.
 *
 ***************************************************************************/

#include <windows.h>
#include <ver.h>
#include <mmsystem.h>
#include <mmddk.h>
#include "mcipionr.h"
#include "pioncnfg.h"
#include "pioncnfg.dlg"

/****************************************************************************
 *
 *   string table
 *
 ***************************************************************************/

STRINGTABLE LOADONCALL MOVEABLE DISCARDABLE
BEGIN
    IDS_PRODUCTNAME,                "Pioneer Videodisc"
    IDS_COMMANDS,                   "pioneer"
    MCIERR_PIONEER_ILLEGAL_FOR_CLV, "Cannot perform this operation with CLV disc."
    MCIERR_PIONEER_NOT_SPINNING,    "The disc must be spinning to perform this operation."
    MCIERR_PIONEER_NO_CHAPTERS,     "Chapters are not supported for this disc."
    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."
END

/****************************************************************************
 *
 *   command table
 *
 ***************************************************************************/

pioneer RCDATA PRELOAD MOVEABLE DISCARDABLE
BEGIN
    "index\0",         VDISC_INDEX, 0,      MCI_COMMAND_HEAD,
    "wait\0",          MCI_WAIT,            MCI_FLAG,
    "notify\0",        MCI_NOTIFY,          MCI_FLAG,
    "on\0",            VDISC_FLAG_ON,       MCI_FLAG,
    "off\0",           VDISC_FLAG_OFF,      MCI_FLAG,
    "\0",              0L,                  MCI_END_COMMAND,

    "keylock\0",       VDISC_KEYLOCK, 0,    MCI_COMMAND_HEAD,
    "wait\0",          MCI_WAIT,            MCI_FLAG,
    "notify\0",        MCI_NOTIFY,          MCI_FLAG,
    "on\0",            VDISC_FLAG_ON,       MCI_FLAG,
    "off\0",           VDISC_FLAG_OFF,      MCI_FLAG,
    "\0",              0L,                  MCI_END_COMMAND,

    "\0",              0L,                  MCI_END_COMMAND_LIST
END

/****************************************************************************
 *
 *   version information
 *
 ***************************************************************************/

/*  All strings MUST have an explicit \0.  The MMRELEASE and the version
 *  string should be changed every build, and the MMRELEASE build extension
 *  should be removed on final release.  See the Windows 3.1 SDK documentation
 *  for details on version information and the VERSIONINFO structure.
 */

#ifdef RC_INVOKED
#define MMVERSION              03
#define MMREVISION             10
#define MMRELEASE              103
#define MMVERSIONSTR           "3.1\0"
#define MMVERSIONNAME          "mcipionr.drv\0"
#define MMVERSIONDESCRIPTION   "MCI driver for Pioneer videodisc player\0"
#define MMVERSIONCOMPANYNAME   "Microsoft Corporation\0"
#define MMVERSIONPRODUCTNAME   "Microsoft Windows\0"
#define MMVERSIONCOPYRIGHT     "Copyright \251 Microsoft Corp. 1991-1992\0"

VS_VERSION_INFO VERSIONINFO
FILEVERSION    MMVERSION, MMREVISION, 0, MMRELEASE
PRODUCTVERSION MMVERSION, MMREVISION, 0, MMRELEASE
FILEFLAGSMASK  0x0000003FL
FILEFLAGS      0
FILEOS         VOS_DOS_WINDOWS16
FILETYPE       VFT_DRV
FILESUBTYPE    VFT2_DRV_INSTALLABLE
BEGIN
    BLOCK "StringFileInfo"
    BEGIN
        BLOCK "040904E4"
        BEGIN
            VALUE "CompanyName", MMVERSIONCOMPANYNAME
            VALUE "FileDescription", MMVERSIONDESCRIPTION
            VALUE "FileVersion",  MMVERSIONSTR
            VALUE "InternalName", MMVERSIONNAME
            VALUE "LegalCopyright", MMVERSIONCOPYRIGHT
            VALUE "OriginalFilename", MMVERSIONNAME
            VALUE "ProductName", MMVERSIONPRODUCTNAME
            VALUE "ProductVersion", MMVERSIONSTR
        END
    END

    BLOCK "VarFileInfo"
    BEGIN
        /* the following line should be extended for localized versions */
        VALUE "Translation", 0x409, 1252
    END
END
#endif
Detected encoding: ASCII (7 bit)2