home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / mmoshead.zip / os2me.h < prev    next >
Text File  |  1994-02-11  |  1KB  |  79 lines

  1. /*************************************/
  2. /* os2me.h -- Multimedia for emx 1.0 */
  3. /*                                   */
  4. /*                                   */
  5. /* Marc E.E. van Woerkom, 2/94       */
  6. /*                                   */
  7. /*************************************/
  8.  
  9.  
  10. /* nested header management */
  11. #ifndef _OS2ME_H
  12. #define _OS2ME_H
  13.  
  14. /* enforce C linkage if used from C++ */
  15. #ifdef __cplusplus
  16.     extern "C" {
  17. #endif
  18.  
  19.  
  20. /********************/
  21. /* emergency brakes */
  22. /********************/
  23.  
  24. #ifndef INCL_OS2MM
  25.     #error sorry, no old MMPM/2 naming! (use INCL_OS2MM)
  26. #endif
  27.  
  28. #ifdef INCL_16
  29.     #error sorry, no 16-bit support!
  30. #endif
  31.  
  32.  
  33. /***********/
  34. /* defines */
  35. /***********/
  36.  
  37. #define OS2ME_INCLUDED 
  38. #define INCL_32
  39. #define INCL_MCIOS2   
  40. #define INCL_MMIOOS2
  41.  
  42.  
  43. /************/
  44. /* includes */
  45. /************/
  46.  
  47. #include <os2medef.h>
  48. #include <meerror.h>
  49.  
  50. #ifdef INCL_MACHDR
  51.     #include <mciapi.h>
  52. #endif
  53.  
  54. #include <ssm.h>
  55. #include <mcios2.h>
  56. #include <mmdrvos2.h>
  57. #include <mmioos2.h>
  58.  
  59. #ifdef INCL_MMIO_CODEC
  60.     #include <codec.h>
  61. #endif
  62.  
  63. #ifdef INCL_SW
  64.     #define INCL_SECONDARYWINDOW
  65.     #define INCL_GRAPHICBUTTON
  66.     #define INCL_CIRCULARSLIDER
  67.     #include <sw.h>
  68. #endif
  69.  
  70.  
  71. /* enforce C linkage if used from C++ */
  72. #ifdef __cplusplus
  73.     }
  74. #endif
  75.  
  76. /* nested header management */
  77. #endif
  78.  
  79.