Commit 58709889 authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

winmm/tests: Test for avivideo driver version.

parent 1b57f07a
......@@ -365,6 +365,10 @@ static void test_mciParser(HWND hwnd)
ok(!err,"capability device type: %s\n", dbg_mcierr(err));
if(!err) ok(!strcmp(buf, "waveaudio"), "capability device type is %s\n", buf);
err = mciSendStringA("info a version", buf, sizeof(buf), hwnd);
ok(!err,"info version: %s\n", dbg_mcierr(err));
if(!err) ok(!strcmp(buf, "1.1"), "info version is %s\n", buf);
err = mciSendCommandA(wDeviceID, MCI_CLOSE, 0, 0);
ok(!err,"mciCommand close returned %s\n", dbg_mcierr(err));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment