|
|
| version 1.15, 2011/01/15 16:48:39 | version 1.17, 2011/12/24 16:57:46 |
|---|---|
| Line 1 | Line 1 |
| /* $Id$ */ | |
| /* | /* |
| * Copyright (c) 2001-2003 NONAKA Kimihiro | * Copyright (c) 2001-2003 NONAKA Kimihiro |
| * All rights reserved. | * All rights reserved. |
| Line 70 MIDIMOD vermouth_module = NULL; | Line 68 MIDIMOD vermouth_module = NULL; |
| * driver | * driver |
| */ | */ |
| static struct { | static struct { |
| BOOL (*drvinit)(UINT rate, UINT samples); | BOOL (*drvinit)(UINT rate, UINT samples); |
| BOOL (*drvterm)(void); | BOOL (*drvterm)(void); |
| void (*drvlock)(void); | void (*drvlock)(void); |
| void (*drvunlock)(void); | void (*drvunlock)(void); |
| void (*sndplay)(void); | void (*sndplay)(void); |
| void (*sndstop)(void); | void (*sndstop)(void); |
| void *(*pcmload)(UINT num, const char *path); | void *(*pcmload)(UINT num, const char *path); |
| void (*pcmdestroy)(void *chanp, UINT num); | void (*pcmdestroy)(void *chanp, UINT num); |
| Line 340 soundmng_setreverse(BOOL reverse) | Line 338 soundmng_setreverse(BOOL reverse) |
| /* | /* |
| * PCM function | * PCM function |
| */ | */ |
| void | static void |
| soundmng_pcminit(void) | soundmng_pcminit(void) |
| { | { |
| int i; | int i; |
| Line 350 soundmng_pcminit(void) | Line 348 soundmng_pcminit(void) |
| } | } |
| } | } |
| void | static void |
| soundmng_pcmdestroy(void) | soundmng_pcmdestroy(void) |
| { | { |
| int i; | int i; |