home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cset21v6.zip / MMPM2TK / TK / SMVSAMP / MOVIE.RC < prev    next >
Text File  |  1993-04-01  |  2KB  |  77 lines

  1. /*************************************************************************
  2.  * File Name    : movie.rc
  3.  *
  4.  * Description  : This is the resource file for the Movie Sample Application
  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. #define  INCL_GRAPHICBUTTON
  21. #define  INCL_CIRCULARSLIDER
  22. #define  INCL_BITMAP
  23.  
  24. #include <os2.h>
  25. #include <sw.h>
  26.  
  27. #include "movie.h"
  28.  
  29. RCINCLUDE movie.dlg
  30.  
  31. ICON ID_ICON movie.ico
  32.  
  33. /*
  34.  * Bitmap's
  35.  */
  36. BITMAP ID_BMP_PLAY0 LOADONCALL MOVEABLE DISCARDABLE PLAY0.BMP
  37. BITMAP ID_BMP_STOP LOADONCALL MOVEABLE DISCARDABLE STOP.BMP
  38. BITMAP ID_BMP_PAUSE LOADONCALL MOVEABLE DISCARDABLE PAUSE.BMP
  39. BITMAP ID_BMP_REWIND LOADONCALL MOVEABLE DISCARDABLE REWIND.BMP
  40.  
  41. /*
  42.  * Help Table Definition.
  43.  *
  44.  * The help table definition for the dialog window.
  45.  */
  46.  
  47. HELPSUBTABLE ID_SUBTABLE_MESSAGEBOX
  48. {
  49. }
  50.  
  51. /*
  52.  * String Table Definition.
  53.  */
  54. STRINGTABLE
  55. {
  56.   IDS_PROGRAM_TITLE,        "Movie Sample Application"
  57.   IDS_MOVIE_ERROR,          "Movie Sample Application Error"
  58.   IDS_HELP_WINDOW_TITLE,    "Movie Sample Application General Help"
  59.   IDS_HELP_LIBRARY_NAME,    "movie.hlp"
  60.   IDS_DEFAULTSIZE,          "~Default Size"
  61.  
  62.   /*
  63.    * Messages.
  64.    */
  65.  
  66.   IDS_HELP_CREATION_FAILED,
  67.   "Creation of Help failed.  Help will not be available."
  68.  
  69.   IDS_UNKNOWN,
  70.   "Unknown MCI Error"
  71.  
  72.   IDS_CANNOT_FIND_MOVIE_FILE,
  73.   "The movie file cannot be found.  Please ensure that the movie file "
  74.   "is in the correct directory and retry."
  75.  
  76. }
  77.