Changeset 595 for trunk/ab5.0
- Timestamp:
- Aug 16, 2008, 5:29:20 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/ablib/src/api_mmsys.sbp
r585 r595 321 321 TypeDef LPWAVECALLBACK = *WAVECALLBACK 322 322 323 323 324 ' wave callback messages 324 325 Const WOM_OPEN = MM_WOM_OPEN … … 505 506 Declare Function waveOutGetErrorText Lib "winmm" Alias "waveOutGetErrorTextA" (mmrError As MMRESULT, pszText As LPSTR, cchText As DWord) As MMRESULT 506 507 #endif 507 Declare Function waveOutOpen Lib "winmm" (ByRef phwo As HWAVEOUT, uDeviceID As DWord, ByRef pwfx As WAVEFORMATEX, dwCallback As DW ord, dwInstance As DWord, fdwOpen As DWord) As MMRESULT508 Declare Function waveOutOpen Lib "winmm" (ByRef phwo As HWAVEOUT, uDeviceID As DWord, ByRef pwfx As WAVEFORMATEX, dwCallback As DWORD_PTR, dwInstance As DWORD_PTR, fdwOpen As DWord) As MMRESULT 508 509 Declare Function waveOutClose Lib "winmm" (hwo As HWAVEOUT) As MMRESULT 509 510 Declare Function waveOutPrepareHeader Lib "winmm" (hwo As HWAVEOUT, ByRef pwh As WAVEHDR, cbwh As DWord) As MMRESULT … … 530 531 Declare Function waveInGetErrorText Lib "winmm" Alias "waveInGetErrorTextA" (mmrError As MMRESULT, pszText As LPSTR, cchText As DWord) As MMRESULT 531 532 #endif 532 Declare Function waveInOpen Lib "winmm" (ByRef phwi As HWAVEIN, uDeviceID As DWord, ByRef pwfx As WAVEFORMATEX, dwCallback As DW ord, dwInstance As DWord, fdwOpen As DWord) As MMRESULT533 Declare Function waveInOpen Lib "winmm" (ByRef phwi As HWAVEIN, uDeviceID As DWord, ByRef pwfx As WAVEFORMATEX, dwCallback As DWORD_PTR, dwInstance As DWORD_PTR, fdwOpen As DWord) As MMRESULT 533 534 Declare Function waveInClose Lib "winmm" (hwi As HWAVEIN) As MMRESULT 534 535 Declare Function waveInPrepareHeader Lib "winmm" (hwi As HWAVEIN, ByRef pwh As WAVEHDR, cbwh As DWord) As MMRESULT … … 646 647 Const MOD_FMSYNTH = 4 647 648 Const MOD_MAPPER = 5 649 Const MOD_WAVETABLE = 6 650 Const MOD_SWSYNTH = 7 648 651 649 652 ' flags for dwSupport field of MIDIOUTCAPS structure … … 776 779 Declare Function midiOutGetErrorText Lib "winmm" Alias "midiOutGetErrorTextA" (mmrError As MMRESULT, pszText As LPSTR, cchText As DWord) As MMRESULT 777 780 #endif 778 Declare Function midiOutOpen Lib "winmm" (ByRef phmo As HMIDIOUT, uDeviceID As DWord, dwCallback As DW ord, dwInstance As DWord, fdwOpen As DWord) As MMRESULT781 Declare Function midiOutOpen Lib "winmm" (ByRef phmo As HMIDIOUT, uDeviceID As DWord, dwCallback As DWORD_PTR, dwInstance As DWORD_PTR, fdwOpen As DWord) As MMRESULT 779 782 Declare Function midiOutClose Lib "winmm" (hmo As HMIDIOUT) As MMRESULT 780 783 Declare Function midiOutPrepareHeader Lib "winmm" (hmo As HMIDIOUT, ByRef pmh As MIDIHDR, cbmh As DWord) As MMRESULT … … 796 799 Declare Function midiInGetErrorText Lib "winmm" Alias "midiInGetErrorTextA" (mmrError As MMRESULT, pszText As LPSTR, cchText As DWord) As MMRESULT 797 800 #endif 798 Declare Function midiInOpen Lib "winmm" (ByRef phmi As HMIDIIN, uDeviceID As DWord, dwCallback As DW ord, dwInstance As DWord, fdwOpen As DWord) As MMRESULT801 Declare Function midiInOpen Lib "winmm" (ByRef phmi As HMIDIIN, uDeviceID As DWord, dwCallback As DWORD_PTR, dwInstance As DWORD_PTR, fdwOpen As DWord) As MMRESULT 799 802 Declare Function midiInClose Lib "winmm" (hmi As HMIDIIN) As MMRESULT 800 803 Declare Function midiInPrepareHeader Lib "winmm" (hmi As HMIDIIN, ByRef pmh As MIDIHDR, cbmh As DWord) As MMRESULT
Note:
See TracChangeset
for help on using the changeset viewer.