Commit 64e2921e authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

quartz/tests: Use the correct integer types.

parent c7bbb107
......@@ -449,10 +449,11 @@ static void test_basic_audio(void)
IBaseFilter *filter = create_dsound_render();
LONG balance, volume;
ITypeInfo *typeinfo;
unsigned int count;
IBasicAudio *audio;
TYPEATTR *typeattr;
ULONG ref, count;
HRESULT hr;
ULONG ref;
hr = IBaseFilter_QueryInterface(filter, &IID_IBasicAudio, (void **)&audio);
ok(hr == S_OK, "Got hr %#x.\n", hr);
......
......@@ -2827,8 +2827,8 @@ static void test_control_delegation(void)
IVideoWindow *window;
IBasicVideo2 *video;
ITypeInfo *typeinfo;
unsigned int count;
TYPEATTR *typeattr;
ULONG count;
HRESULT hr;
LONG val;
......
......@@ -3975,11 +3975,11 @@ static void test_windowless_size(void)
IVMRAspectRatioControl9 *aspect_ratio_control;
IVMRWindowlessControl9 *windowless_control;
IFilterGraph2 *graph = create_graph();
VMR9AspectRatioMode aspect_mode;
struct testfilter source;
IMemAllocator *allocator;
RECT src, dst, expect;
IMemInputPin *input;
DWORD aspect_mode;
HWND window;
HRESULT hr;
ULONG ref;
......
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