home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / tolkit45.zip / os2tk45 / samples / mm / movie / movie.rc < prev    next >
Text File  |  1999-05-11  |  2KB  |  88 lines

  1. /*************************************************************************
  2.  
  3.  * File Name    : movie.rc
  4.  *
  5.  * Description  : This is the resource file for the Movie Sample Application
  6.  *                Program.
  7.  *
  8.  * Concepts     : See the C source file for this program.
  9.  *
  10.  * MMPM/2 API's : See the C source file for this program.
  11.  *
  12.  * Required
  13.  *    Files     : See the C source file for this program.
  14.  *
  15.  * Copyright (C) IBM 1993
  16.  *************************************************************************/
  17.  
  18. #define  INCL_WIN
  19. #define  INCL_PM
  20. #define  INCL_DOS
  21. #define  INCL_GRAPHICBUTTON
  22. #define  INCL_CIRCULARSLIDER
  23. #define  INCL_BITMAP
  24.  
  25. #include <os2.h>
  26. #include <sw.h>
  27.  
  28. #include "movie.h"
  29.  
  30. RCINCLUDE movie.dlg
  31.  
  32. ICON ID_ICON movie.ico
  33.  
  34. /*
  35.  * Bitmap's
  36.  */
  37. BITMAP ID_BMP_PLAY0 LOADONCALL MOVEABLE DISCARDABLE PLAY0.BMP
  38. BITMAP ID_BMP_STOP LOADONCALL MOVEABLE DISCARDABLE STOP.BMP
  39. BITMAP ID_BMP_PAUSE LOADONCALL MOVEABLE DISCARDABLE PAUSE.BMP
  40. BITMAP ID_BMP_REWIND LOADONCALL MOVEABLE DISCARDABLE REWIND.BMP
  41.  
  42. /*
  43.  * Help Table Definition.
  44.  *
  45.  * The help table definition for the dialog window.
  46.  */
  47.  
  48. HELPSUBTABLE ID_SUBTABLE_MESSAGEBOX
  49. {
  50. }
  51.  
  52. /*
  53.  * String Table Definition.
  54.  */
  55. STRINGTABLE
  56. {
  57.   IDS_PROGRAM_TITLE,        "Movie Sample Application"
  58.   IDS_MOVIE_ERROR,          "Movie Sample Application Error"
  59.   IDS_HELP_WINDOW_TITLE,    "Movie Sample Application General Help"
  60.   IDS_HELP_LIBRARY_NAME,    "movie.hlp"
  61.   IDS_DEFAULTSIZE,          "~Default Size"
  62.   IDS_HELP,                 "~Help"
  63.  
  64.   /*
  65.    * Messages.
  66.    */
  67.  
  68.   IDS_EDIT_MOVIE,
  69.   "The movie.avi file is about to be edited. "
  70.   "Please see the routine EditTheMovie in the source file movie.c "
  71.   "for technical details."
  72.  
  73.   IDS_HELP_CREATION_FAILED,
  74.   "Creation of Help failed. Help will not be available."
  75.  
  76.   IDS_UNKNOWN,
  77.   "Unknown MCI Error"
  78.  
  79.   IDS_CANNOT_FIND_MOVIE_FILE,
  80.   "The movie file cannot be found.  Please ensure that the movie file "
  81.   "is in the correct directory and retry."
  82.  
  83.   IDS_CANNOT_LOAD_MOVIE_FILE,
  84.   "The movie file cannot be loaded.  Please ensure that the movie file "
  85.   "is in the correct directory and retry."
  86.  
  87. }
  88.