| Line | |
|---|
| 1 | /* $Id: mixer.h,v 1.2 2002-05-23 13:50:15 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 | #include "mixeros2.h"
|
|---|
| 17 |
|
|---|
| 18 | #define WINMM_MIXERSTRING_A "OS/2 WINMM Mixer"
|
|---|
| 19 | #define WINMM_MIXERSTRING_W (LPWSTR)L"OS/2 WINMM Mixer"
|
|---|
| 20 |
|
|---|
| 21 | #define WINMM_SHORTNAME_WAVEOUT_A "Wave Out"
|
|---|
| 22 | #define WINMM_SHORTNAME_WAVEOUT_W (LPWSTR)L"Wave Out"
|
|---|
| 23 | #define WINMM_SHORTNAME_LINEOUT_A "Line Out"
|
|---|
| 24 | #define WINMM_SHORTNAME_LINEOUT_W (LPWSTR)L"Line Out"
|
|---|
| 25 |
|
|---|
| 26 | #define MAX_MIXER_DESTINATIONS 8
|
|---|
| 27 | #define MAX_MIXER_SOURCES 16
|
|---|
| 28 | #define MAX_MIXER_CONTROLS 64
|
|---|
| 29 |
|
|---|
| 30 |
|
|---|
| 31 | #ifdef __cplusplus
|
|---|
| 32 | extern "C" {
|
|---|
| 33 | #endif
|
|---|
| 34 |
|
|---|
| 35 | BOOL mixerInit();
|
|---|
| 36 | void mixerExit();
|
|---|
| 37 |
|
|---|
| 38 | extern char *szCtrlName[MIX_CTRL_MAX][2];
|
|---|
| 39 | extern char *szSourceName[MIXER_SRC_MAX][2];
|
|---|
| 40 | extern char *szDestName[MIXER_DEST_MAX][2];
|
|---|
| 41 |
|
|---|
| 42 | #ifdef __cplusplus
|
|---|
| 43 | }
|
|---|
| 44 | #endif
|
|---|
| 45 |
|
|---|
| 46 | #endif //__WINMM_MIXER_H__
|
|---|
| 47 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.