forked from Distrotech/esound
-
Notifications
You must be signed in to change notification settings - Fork 0
/
os2me.h
84 lines (70 loc) · 2.57 KB
/
os2me.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/****************************************************************************/
/* */
/* Module Name: OS2ME.H */
/* */
/* OS/2 2.0 Multimedia Extensions top level include file that includes all */
/* the files necessary for writing an OS/2 Multimedia application. */
/* */
/* Copyright (c) International Business Machines Corporation */
/* 1991, 1992, 1993 */
/* All Rights Reserved */
/* */
/****************************************************************************/
#ifdef __cplusplus
extern "C" {
#endif
#define OS2ME_INCLUDED
/* OS/2 Type Headers for MCI and MMIO */
#ifdef INCL_OS2MM
#define INCL_MCIOS2
#define INCL_MMIOOS2
#endif
/* Common definitions */
#include <os2medef.h>
#include <meerror.h>
/* Performance stub for pagetuned pragma header files */
#ifdef INCL_MM_PERFSTUB
#ifndef PERFSTUB_INCLUDED
#define PERFSTUB_INCLUDED
#include "perfstub.h"
#endif
#endif
#ifdef INCL_MACHDR
#include <mciapi.h>
#endif
/* OS/2 SyncStream Manager Include File */
#ifndef _SSM_H_
#include <ssm.h>
#endif
/* OS/2 Media Control Manager Include File */
#ifdef INCL_MCIOS2
#include <mcios2.h> /* OS/2 MCI Application interface */
#include <mmdrvos2.h> /* OS/2 MCI driver include file */
#else
#include <mmsystem.h> /* MCI Application interface */
#include <mcidrv.h> /* MCI driver include file */
#endif
/* OS/2 Multimedia IO Services Include File */
#ifdef INCL_MMIO
#include <mmio.h>
#ifdef INCL_MMIO_CODEC
#include <codec.h>
#endif
#else
#ifdef INCL_MMIOOS2
#include <mmioos2.h>
#ifdef INCL_MMIO_CODEC
#include <codec.h>
#endif
#endif
#endif
/* OS/2 Multimedia Secondary Windows Include File */
#ifdef INCL_SW
#define INCL_SECONDARYWINDOW
#define INCL_GRAPHICBUTTON
#define INCL_CIRCULARSLIDER
#include <sw.h>
#endif
#ifdef __cplusplus
}
#endif