Line | |
---|
1 | /* $Id: mixer.h,v 1.1 2002-05-22 20:19:19 sandervl Exp $ */
|
---|
2 |
|
---|
3 | /*
|
---|
4 | * Mixer multimedia
|
---|
5 | *
|
---|
6 | * Copyright 2002 Sander van Leeuwen (sandervl@xs4all.nl)
|
---|
7 | *
|
---|
8 | *
|
---|
9 | * Project Odin Software License can be found in LICENSE.TXT
|
---|
10 | *
|
---|
11 | */
|
---|
12 |
|
---|
13 | #ifndef __WINMM_MIXER_H__
|
---|
14 | #define __WINMM_MIXER_H__
|
---|
15 |
|
---|
16 | #define WINMM_MIXERSTRING_A "OS/2 WINMM Mixer"
|
---|
17 | #define WINMM_MIXERSTRING_W (LPWSTR)L"OS/2 WINMM Mixer"
|
---|
18 |
|
---|
19 | #define WINMM_SHORTNAME_WAVEOUT_A "Wave Out"
|
---|
20 | #define WINMM_SHORTNAME_WAVEOUT_W (LPWSTR)L"Wave Out"
|
---|
21 | #define WINMM_SHORTNAME_LINEOUT_A "Line Out"
|
---|
22 | #define WINMM_SHORTNAME_LINEOUT_W (LPWSTR)L"Line Out"
|
---|
23 |
|
---|
24 | #define MAX_MIXER_DESTINATIONS 8
|
---|
25 | #define MAX_MIXER_SOURCES 16
|
---|
26 | #define MAX_MIXER_CONTROLS 64
|
---|
27 |
|
---|
28 |
|
---|
29 | #ifdef __cplusplus
|
---|
30 | extern "C" {
|
---|
31 | #endif
|
---|
32 |
|
---|
33 | BOOL mixerInit();
|
---|
34 | void mixerExit();
|
---|
35 |
|
---|
36 | #ifdef __cplusplus
|
---|
37 | }
|
---|
38 | #endif
|
---|
39 |
|
---|
40 | #endif //__WINMM_MIXER_H__
|
---|
41 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.