mmdevapi/tests: Remove an ARRAY_SIZE()-like macro.
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org> Signed-off-by: Andrew Eikum <aeikum@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
864c803341
commit
e48f34906e
|
@ -51,7 +51,6 @@ static const unsigned int win_formats[][4] = {
|
|||
{48000, 8, 1}, {48000, 8, 2}, {48000, 16, 1}, {48000, 16, 2},
|
||||
{96000, 8, 1}, {96000, 8, 2}, {96000, 16, 1}, {96000, 16, 2}
|
||||
};
|
||||
#define NB_WIN_FORMATS (sizeof(win_formats)/sizeof(*win_formats))
|
||||
|
||||
#define NULL_PTR_ERR MAKE_HRESULT(SEVERITY_ERROR, FACILITY_WIN32, RPC_X_NULL_REF_POINTER)
|
||||
|
||||
|
@ -384,7 +383,7 @@ static void test_formats(AUDCLNT_SHAREMODE mode)
|
|||
fmt.wFormatTag = WAVE_FORMAT_PCM;
|
||||
fmt.cbSize = 0;
|
||||
|
||||
for(i = 0; i < NB_WIN_FORMATS; i++) {
|
||||
for(i = 0; i < ARRAY_SIZE(win_formats); i++) {
|
||||
hr = IMMDevice_Activate(dev, &IID_IAudioClient, CLSCTX_INPROC_SERVER,
|
||||
NULL, (void**)&ac);
|
||||
ok(hr == S_OK, "Activation failed with %08x\n", hr);
|
||||
|
|
Loading…
Reference in New Issue