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
1011bc47
Commit
1011bc47
authored
Sep 29, 2006
by
Francois Gouget
Committed by
Alexandre Julliard
Oct 02, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Don't return void values. This fixes Visual C++ warnings.
parent
66300403
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
cstub.c
dlls/rpcrt4/tests/cstub.c
+1
-1
ndr_marshall.c
dlls/rpcrt4/tests/ndr_marshall.c
+1
-1
No files found.
dlls/rpcrt4/tests/cstub.c
View file @
1011bc47
...
...
@@ -56,7 +56,7 @@ static void * CALLBACK my_alloc(size_t size)
static
void
CALLBACK
my_free
(
void
*
ptr
)
{
my_free_called
++
;
return
NdrOleFree
(
ptr
);
NdrOleFree
(
ptr
);
}
typedef
struct
_MIDL_PROC_FORMAT_STRING
...
...
dlls/rpcrt4/tests/ndr_marshall.c
View file @
1011bc47
...
...
@@ -42,7 +42,7 @@ void * CALLBACK my_alloc(size_t size)
void
CALLBACK
my_free
(
void
*
ptr
)
{
my_free_called
++
;
return
NdrOleFree
(
ptr
);
NdrOleFree
(
ptr
);
}
static
const
MIDL_STUB_DESC
Object_StubDesc
=
...
...
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