|
|
| version 1.2, 2005/03/09 17:12:34 | version 1.3, 2005/03/19 20:46:07 |
|---|---|
| Line 21 static MT32SOUND mt32sound; | Line 21 static MT32SOUND mt32sound; |
| typedef struct { | typedef struct { |
| const TCHAR *symbol; | const char *symbol; |
| UINT addr; | UINT addr; |
| } DLLPROC; | } DLLPROC; |
| static const TCHAR mt32sounddll[] = _T("mt32sound.dll"); | static const TCHAR mt32sounddll[] = _T("mt32sound.dll"); |
| static const TCHAR fn_mt32soundopen[] = _T("MT32Sound_Open"); | static const char fn_mt32soundopen[] = "MT32Sound_Open"; |
| static const TCHAR fn_mt32soundclose[] = _T("MT32Sound_Close"); | static const char fn_mt32soundclose[] = "MT32Sound_Close"; |
| static const TCHAR fn_mt32soundwrite[] = _T("MT32Sound_Write"); | static const char fn_mt32soundwrite[] = "MT32Sound_Write"; |
| static const TCHAR fn_mt32soundmix[] = _T("MT32Sound_Mix"); | static const char fn_mt32soundmix[] = "MT32Sound_Mix"; |
| static const DLLPROC dllproc[] = { | static const DLLPROC dllproc[] = { |
| {fn_mt32soundopen, offsetof(MT32SOUND, Open)}, | {fn_mt32soundopen, offsetof(MT32SOUND, Open)}, |