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
5539e288
Commit
5539e288
authored
Sep 27, 2004
by
Marcus Meissner
Committed by
Alexandre Julliard
Sep 27, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Function return types cannot be const.
parent
cb54fe66
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
tmarshal.c
dlls/oleaut32/tmarshal.c
+1
-1
typelib.c
dlls/oleaut32/typelib.c
+1
-1
No files found.
dlls/oleaut32/tmarshal.c
View file @
5539e288
...
...
@@ -405,7 +405,7 @@ static IRpcProxyBufferVtbl tmproxyvtable = {
};
/* how much space do we use on stack in DWORD steps. */
int
const
int
_argsize
(
DWORD
vt
)
{
switch
(
vt
)
{
case
VT_DATE
:
...
...
dlls/oleaut32/typelib.c
View file @
5539e288
...
...
@@ -4472,7 +4472,7 @@ _invoke(FARPROC func,CALLCONV callconv, int nrargs, DWORD *args) {
return
res
;
}
extern
int
const
_argsize
(
DWORD
vt
);
extern
int
_argsize
(
DWORD
vt
);
/****************************************************************************
* Helper functions for Dispcall / Invoke, which copies one variant
...
...
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