Commit e28d23de authored by Alexandre Julliard's avatar Alexandre Julliard

windows.globalization: Fix some prototype mismatches.

parent 7e792b3b
...@@ -126,7 +126,7 @@ static HRESULT STDMETHODCALLTYPE hstring_vector_GetTrustLevel(IVectorView_HSTRIN ...@@ -126,7 +126,7 @@ static HRESULT STDMETHODCALLTYPE hstring_vector_GetTrustLevel(IVectorView_HSTRIN
} }
static HRESULT STDMETHODCALLTYPE hstring_vector_GetAt(IVectorView_HSTRING *iface, static HRESULT STDMETHODCALLTYPE hstring_vector_GetAt(IVectorView_HSTRING *iface,
ULONG index, HSTRING *value) UINT32 index, HSTRING *value)
{ {
struct hstring_vector *impl = impl_from_IVectorView_HSTRING(iface); struct hstring_vector *impl = impl_from_IVectorView_HSTRING(iface);
...@@ -138,7 +138,7 @@ static HRESULT STDMETHODCALLTYPE hstring_vector_GetAt(IVectorView_HSTRING *iface ...@@ -138,7 +138,7 @@ static HRESULT STDMETHODCALLTYPE hstring_vector_GetAt(IVectorView_HSTRING *iface
} }
static HRESULT STDMETHODCALLTYPE hstring_vector_get_Size(IVectorView_HSTRING *iface, static HRESULT STDMETHODCALLTYPE hstring_vector_get_Size(IVectorView_HSTRING *iface,
ULONG *value) UINT32 *value)
{ {
struct hstring_vector *impl = impl_from_IVectorView_HSTRING(iface); struct hstring_vector *impl = impl_from_IVectorView_HSTRING(iface);
...@@ -149,7 +149,7 @@ static HRESULT STDMETHODCALLTYPE hstring_vector_get_Size(IVectorView_HSTRING *if ...@@ -149,7 +149,7 @@ static HRESULT STDMETHODCALLTYPE hstring_vector_get_Size(IVectorView_HSTRING *if
} }
static HRESULT STDMETHODCALLTYPE hstring_vector_IndexOf(IVectorView_HSTRING *iface, static HRESULT STDMETHODCALLTYPE hstring_vector_IndexOf(IVectorView_HSTRING *iface,
HSTRING element, ULONG *index, BOOLEAN *found) HSTRING element, UINT32 *index, BOOLEAN *found)
{ {
struct hstring_vector *impl = impl_from_IVectorView_HSTRING(iface); struct hstring_vector *impl = impl_from_IVectorView_HSTRING(iface);
INT32 i, order; INT32 i, order;
...@@ -175,7 +175,7 @@ static HRESULT STDMETHODCALLTYPE hstring_vector_IndexOf(IVectorView_HSTRING *ifa ...@@ -175,7 +175,7 @@ static HRESULT STDMETHODCALLTYPE hstring_vector_IndexOf(IVectorView_HSTRING *ifa
} }
static HRESULT STDMETHODCALLTYPE hstring_vector_GetMany(IVectorView_HSTRING *iface, static HRESULT STDMETHODCALLTYPE hstring_vector_GetMany(IVectorView_HSTRING *iface,
ULONG start_index, ULONG items_size, HSTRING *items, UINT *count) UINT32 start_index, UINT32 items_size, HSTRING *items, UINT *count)
{ {
struct hstring_vector *impl = impl_from_IVectorView_HSTRING(iface); struct hstring_vector *impl = impl_from_IVectorView_HSTRING(iface);
HRESULT hr = S_OK; HRESULT hr = S_OK;
......
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