Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
e28d23de
Commit
e28d23de
authored
Jan 26, 2022
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windows.globalization: Fix some prototype mismatches.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
7e792b3b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
main.c
dlls/windows.globalization/main.c
+4
-4
No files found.
dlls/windows.globalization/main.c
View file @
e28d23de
...
...
@@ -126,7 +126,7 @@ static HRESULT STDMETHODCALLTYPE hstring_vector_GetTrustLevel(IVectorView_HSTRIN
}
static
HRESULT
STDMETHODCALLTYPE
hstring_vector_GetAt
(
IVectorView_HSTRING
*
iface
,
U
LONG
index
,
HSTRING
*
value
)
U
INT32
index
,
HSTRING
*
value
)
{
struct
hstring_vector
*
impl
=
impl_from_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
,
U
LONG
*
value
)
U
INT32
*
value
)
{
struct
hstring_vector
*
impl
=
impl_from_IVectorView_HSTRING
(
iface
);
...
...
@@ -149,7 +149,7 @@ static HRESULT STDMETHODCALLTYPE hstring_vector_get_Size(IVectorView_HSTRING *if
}
static
HRESULT
STDMETHODCALLTYPE
hstring_vector_IndexOf
(
IVectorView_HSTRING
*
iface
,
HSTRING
element
,
U
LONG
*
index
,
BOOLEAN
*
found
)
HSTRING
element
,
U
INT32
*
index
,
BOOLEAN
*
found
)
{
struct
hstring_vector
*
impl
=
impl_from_IVectorView_HSTRING
(
iface
);
INT32
i
,
order
;
...
...
@@ -175,7 +175,7 @@ static HRESULT STDMETHODCALLTYPE hstring_vector_IndexOf(IVectorView_HSTRING *ifa
}
static
HRESULT
STDMETHODCALLTYPE
hstring_vector_GetMany
(
IVectorView_HSTRING
*
iface
,
U
LONG
start_index
,
ULONG
items_size
,
HSTRING
*
items
,
UINT
*
count
)
U
INT32
start_index
,
UINT32
items_size
,
HSTRING
*
items
,
UINT
*
count
)
{
struct
hstring_vector
*
impl
=
impl_from_IVectorView_HSTRING
(
iface
);
HRESULT
hr
=
S_OK
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment