home *** CD-ROM | disk | FTP | other *** search
/ The Developer Connection…ice Driver Kit for OS/2 3 / DEV3-D1.ISO / source / mmpm2src / riffsamp / riffsamp.rc < prev   
Encoding:
Text File  |  1993-10-18  |  2.9 KB  |  105 lines

  1. /*************************************************************************
  2.  * File Name    : RIFFSAMP.RC
  3.  *
  4.  * Description  : This is the resource file for Compound RIFF file sample
  5.  *                program.
  6.  *
  7.  * Concepts     : See the C source file for this program.
  8.  *
  9.  * MMPM/2 API's : See the C source file for this program.
  10.  *
  11.  * Required
  12.  *    Files     : See the C source file for this program.
  13.  *
  14.  * Copyright (C) IBM 1993
  15.  *************************************************************************/
  16.  
  17. #define  INCL_WIN
  18. #define  INCL_PM
  19. #define  INCL_DOS
  20.  
  21. #include <os2.h>
  22.  
  23. #include "riffsamp.h"
  24.  
  25.  
  26. RCINCLUDE riffsamp.dlg
  27.  
  28. ICON ID_ICON riffsamp.ico
  29.  
  30.  
  31.  
  32. /*
  33.  * Help Table Definition.
  34.  *
  35.  * The help table definition for the dialog window.
  36.  */
  37.  
  38. HELPTABLE ID_RIFFSAMP_HELPTABLE
  39. {
  40.     HELPITEM ID_RIFFSAMP_DIALOG_BOX,   0,                   0
  41.     HELPITEM ID_MESSAGE_BOX,        ID_SUBTABLE_MESSAGEBOX, ID_MESSAGE_BOX
  42. }
  43.  
  44. HELPSUBTABLE ID_SUBTABLE_MESSAGEBOX
  45. {
  46. }
  47.  
  48. STRINGTABLE
  49. {
  50.    IDS_MAIN_WINDOW_TITLE,
  51.    "RIFF Compound File Utility"
  52.  
  53.    IDS_HELP_CREATION_ERROR,
  54.    "Help Initialization failed.  Help will not be available."
  55.  
  56.    IDS_HELP_WINDOW_TITLE,
  57.    "RIFF Compound File Help Window"
  58.  
  59.    IDS_ERROR_TITLE,
  60.    "RIFF Compound File Utility Error"
  61.  
  62.    IDS_CANNOT_GET_MEMORY,
  63.    "The Compound RIFF File Utility cannot play Wave File because there"
  64.    " are not enough system resources available.  End one or more of your"
  65.    " running programs and try again."
  66.  
  67.  
  68.    IDS_CANT_PROCESS_MESSAGE,
  69.    "The selected action could not be processed at the time it was requested."
  70.    "  Please retry the action."
  71.  
  72.  
  73.    IDS_DEFAULT_SIZE,
  74.    "~Default Size"
  75.  
  76.    IDS_NO_WAVE_FILES,
  77.    "No wave files exist in the current directory.  The RIFF Compound utility "
  78.    "cannot create a compound file without wave files.  Please copy the wave "
  79.    "files into the current directory and restart the application"
  80.  
  81.    IDS_NO_FILES_SELECTED,
  82.    "No wave file has been selected from the list box.  Please select one file "
  83.    "and try the action again."
  84.  
  85.    IDS_RIFF_CREATION_ERROR,
  86.    "The Riff Compound File could not be created.  Please close the application"
  87.    " and retry this action again. "
  88.  
  89.    IDS_COULD_NOT_OPEN_WAVE,
  90.    "The selected wave file could not be opened.  Make sure the file is in"
  91.    " the current directory and retry this action again. "
  92.  
  93.    IDS_FILE_NOT_FOUND,
  94.    "The selected wave file could not be found.  Make sure the file is in"
  95.    " the current directory and retry this action again. "
  96.  
  97.    IDS_NO_CTOC_ENTRIES_SELECTED,
  98.    "No CTOC element entry has been selected from the list box.  Please select"
  99.    " one entry and try the action again."
  100.  
  101.    IDS_ENTRY_ALREADY_EXISTS,
  102.    "The selected wave file is already an entry in the CTOC for the RIFF"
  103.    " compound file.  Select another wave file and try this action again."
  104. }
  105.