| 1 | /* SCCSID = %W% %E% */
|
|---|
| 2 | /****************************************************************************
|
|---|
| 3 | * *
|
|---|
| 4 | * Copyright (c) IBM Corporation 1994 - 1997. *
|
|---|
| 5 | * Copyright (c) Voyetra Technologies 1990-1993. All rights reserved *
|
|---|
| 6 | * *
|
|---|
| 7 | * The following IBM OS/2 source code is provided to you solely for the *
|
|---|
| 8 | * the purpose of assisting you in your development of OS/2 device drivers. *
|
|---|
| 9 | * You may use this code in accordance with the IBM License Agreement *
|
|---|
| 10 | * provided in the IBM Device Driver Source Kit for OS/2. *
|
|---|
| 11 | * *
|
|---|
| 12 | ****************************************************************************/
|
|---|
| 13 | /**@internal %W%
|
|---|
| 14 | * Miscellaneous drum kit definitions.
|
|---|
| 15 | * @version %I%
|
|---|
| 16 | * @context
|
|---|
| 17 | * Unless otherwise noted, all interfaces are Ring-0, 16-bit, kernel stack.
|
|---|
| 18 | * @notes
|
|---|
| 19 | * @history
|
|---|
| 20 | */
|
|---|
| 21 |
|
|---|
| 22 | /* 0 1 2 3 4 5 6 7 8 9 10 11 12 13 */
|
|---|
| 23 | static char crash_cymbal_preset[] ={ 1, 5, 245, 165, 0};
|
|---|
| 24 |
|
|---|
| 25 | /* 0 1 2 3 4 5 6 7 8 9 10 11 12 13 */
|
|---|
| 26 | static char high_hat_preset[] = { 1, 6, 249, 104, 0};
|
|---|
| 27 | /* 9 8 was pretty good */
|
|---|
| 28 |
|
|---|
| 29 | static char tom_tom_preset[] = { 4, 0, 247, 181, 0};
|
|---|
| 30 | static char bass_drum_preset0[] = { 0, 11, 168, 76, 4}; /* definition of default percussive voices: */
|
|---|
| 31 | static char bass_drum_preset1[] = { 0, 0, 214, 79, 4};
|
|---|
| 32 | static char sdOpr[] = { 12, 0, 248, 181, 0};
|
|---|
| 33 |
|
|---|