Changeset 588 for trunk/src/winmm/mixer.cpp
- Timestamp:
- Aug 19, 1999, 8:46:54 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/winmm/mixer.cpp
r95 r588 1 /* $Id: mixer.cpp,v 1. 3 1999-06-10 16:24:34 phaller Exp $ */1 /* $Id: mixer.cpp,v 1.4 1999-08-19 18:46:04 phaller Exp $ */ 2 2 3 3 /* … … 10 10 * 11 11 */ 12 13 /**************************************************************************** 14 * Includes * 15 ****************************************************************************/ 16 12 17 #include <os2win.h> 13 18 #include <mmsystem.h> 19 #include <odinwrap.h> 14 20 #include <misc.h> 21 22 23 ODINDEBUGCHANNEL(WINMM-MIXER) 15 24 16 25 // … … 19 28 20 29 /******************************************************************************/ 21 MMRESULT WIN32API mixerClose( HMIXER hmx ) 30 ODINFUNCTION1(MMRESULT, mixerClose, 31 HMIXER, hmx) 22 32 { 23 33 dprintf(("WINMM:mixerClose - stub\n" )); … … 26 36 27 37 /******************************************************************************/ 28 MMRESULT WIN32API mixerGetControlDetailsA(HMIXEROBJ hmxobj, LPMIXERCONTROLDETAILS pmxcd, DWORD fdwDetails) 38 ODINFUNCTION3(MMRESULT, mixerGetControlDetailsA, 39 HMIXEROBJ, hmxobj, 40 LPMIXERCONTROLDETAILS, pmxcd, 41 DWORD, fdwDetails) 29 42 { 30 43 dprintf(("WINMM:mixerGetControlDetailsA - stub\n" )); … … 33 46 34 47 /******************************************************************************/ 35 MMRESULT WIN32API mixerGetControlDetailsW(HMIXEROBJ hmxobj, LPMIXERCONTROLDETAILS pmxcd, DWORD fdwDetails) 48 ODINFUNCTION3(MMRESULT, mixerGetControlDetailsW, 49 HMIXEROBJ, hmxobj, 50 LPMIXERCONTROLDETAILS, pmxcd, 51 DWORD, fdwDetails) 36 52 { 37 53 dprintf(("WINMM:mixerGetControlDetailsW - stub\n" )); … … 40 56 41 57 /******************************************************************************/ 42 MMRESULT WIN32API mixerGetDevCapsA( UINT uMxId, LPMIXERCAPSA pmxcaps, UINT cbmxcaps) 58 ODINFUNCTION3(MMRESULT, mixerGetDevCapsA, 59 UINT, uMxId, 60 LPMIXERCAPSA, pmxcaps, 61 UINT, cbmxcaps) 43 62 { 44 63 dprintf(("WINMM:mixerGetDevCapsA(%d) -stub\n", uMxId )); … … 47 66 48 67 /******************************************************************************/ 49 MMRESULT WIN32API mixerGetLineControlsA(HMIXEROBJ hmxobj, LPMIXERLINECONTROLSA pmxlc, DWORD fdwControls) 68 ODINFUNCTION3(MMRESULT, mixerGetLineControlsA, 69 HMIXEROBJ, hmxobj, 70 LPMIXERLINECONTROLSA, pmxlc, 71 DWORD, fdwControls) 50 72 { 51 73 dprintf(("WINMM:mixerGetGetLineControlsA - stub\n" )); … … 54 76 55 77 /******************************************************************************/ 56 MMRESULT WIN32API mixerGetLineControlsW(HMIXEROBJ hmxobj, LPMIXERLINECONTROLSW pmxlc, DWORD fdwControls) 78 ODINFUNCTION3(MMRESULT, mixerGetLineControlsW, 79 HMIXEROBJ, hmxobj, 80 LPMIXERLINECONTROLSW, pmxlc, 81 DWORD, fdwControls) 57 82 { 58 83 dprintf(("WINMM:mixerGetGetLineControlsW - stub\n" )); … … 61 86 62 87 /******************************************************************************/ 63 MMRESULT WIN32API mixerGetDevCapsW( UINT uMxId, LPMIXERCAPSW pmxcaps, UINT cbmxcaps) 88 ODINFUNCTION3(MMRESULT, mixerGetDevCapsW, 89 UINT, uMxId, 90 LPMIXERCAPSW, pmxcaps, 91 UINT, cbmxcaps) 64 92 { 65 93 dprintf(("WINMM:mixerGetDevCapsW(%u) - stub\n", uMxId )); … … 68 96 69 97 /******************************************************************************/ 70 MMRESULT WIN32API mixerGetID( HMIXEROBJ hmxobj, UINT *puMxId, DWORD fdwId) 98 ODINFUNCTION3(MMRESULT, mixerGetID, 99 HMIXEROBJ, hmxobj, 100 UINT *, puMxId, 101 DWORD, fdwId) 71 102 { 72 103 dprintf(("WINMM:mixerGetID - stub\n" )); … … 75 106 76 107 /******************************************************************************/ 77 MMRESULT WIN32API mixerGetLineInfoA(HMIXEROBJ hmxobj, LPMIXERLINEA pmxl, DWORD fdwInfo) 108 ODINFUNCTION3(MMRESULT, mixerGetLineInfoA, 109 HMIXEROBJ, hmxobj, 110 LPMIXERLINEA, pmxl, 111 DWORD, fdwInfo) 78 112 { 79 113 dprintf(("WINMM:mixerGetLineInfoA - stub\n" )); … … 82 116 83 117 /******************************************************************************/ 84 MMRESULT WIN32API mixerGetLineInfoW(HMIXEROBJ hmxobj, LPMIXERLINEW pmxl, DWORD fdwInfo) 118 ODINFUNCTION3(MMRESULT, mixerGetLineInfoW, 119 HMIXEROBJ, hmxobj, 120 LPMIXERLINEW, pmxl, 121 DWORD, fdwInfo) 85 122 { 86 123 dprintf(("WINMM:mixerGetLineInfoW - stub\n" )); … … 89 126 90 127 /******************************************************************************/ 91 MMRESULT WIN32API mixerMessage( HMIXER hmx, UINT uMsg, DWORD dwParam1, DWORD dwParam2) 128 ODINFUNCTION4(MMRESULT, mixerMessage, 129 HMIXER, hmx, 130 UINT, uMsg, 131 DWORD, dwParam1, 132 DWORD, dwParam2) 92 133 { 93 134 dprintf(("WINMM:mixerMessage - stub\n" )); … … 96 137 97 138 /******************************************************************************/ 98 UINT WIN32API mixerGetNumDevs( void)139 ODINFUNCTION0(UINT, mixerGetNumDevs) 99 140 { 100 141 dprintf(("WINMM:mixerGetNumDevs - returning 0\n")); … … 103 144 104 145 /******************************************************************************/ 105 MMRESULT WIN32API mixerOpen( LPHMIXER phmx, UINT uMxId, DWORD dwCallback, DWORD dwInstance, DWORD fdwOpen) 146 ODINFUNCTION5(MMRESULT, mixerOpen, 147 LPHMIXER, phmx, 148 UINT, uMxId, 149 DWORD, dwCallback, 150 DWORD, dwInstance, 151 DWORD, fdwOpen) 106 152 { 107 153 dprintf(("WINMM:mixerOpen(%d) - stub\n", uMxId )); … … 109 155 } 110 156 111 MMRESULT WIN32API mixerSetControlDetails(HMIXEROBJ hmxobj, LPMIXERCONTROLDETAILS pmxcd, DWORD fdwDetails) 157 ODINFUNCTION3(MMRESULT, mixerSetControlDetails, 158 HMIXEROBJ, hmxobj, 159 LPMIXERCONTROLDETAILS, pmxcd, 160 DWORD, fdwDetails) 112 161 { 113 162 dprintf(("WINMM:mixerSetControlDetails - stub\n" )); … … 115 164 } 116 165 166
Note:
See TracChangeset
for help on using the changeset viewer.