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
1de7f2d5
Commit
1de7f2d5
authored
Jan 21, 2009
by
Hans Leidekker
Committed by
Alexandre Julliard
Jan 21, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Add a stub implementation of NdrGetUserMarshalInfo.
parent
d615acc8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
rpcrt4.spec
dlls/rpcrt4/rpcrt4.spec
+1
-1
rpcrt4_main.c
dlls/rpcrt4/rpcrt4_main.c
+6
-0
No files found.
dlls/rpcrt4/rpcrt4.spec
View file @
1de7f2d5
...
...
@@ -203,7 +203,7 @@
@ stub NdrGetSimpleTypeBufferSize # wxp
@ stub NdrGetSimpleTypeMemorySize # wxp
@ stub NdrGetTypeFlags # wxp
@ st
ub NdrGetUserMarshallInfo
@ st
dcall NdrGetUserMarshalInfo(ptr long ptr)
@ stub NdrHardStructBufferSize #(ptr ptr ptr)
@ stub NdrHardStructFree #(ptr ptr ptr)
@ stub NdrHardStructMarshall #(ptr ptr ptr)
...
...
dlls/rpcrt4/rpcrt4_main.c
View file @
1de7f2d5
...
...
@@ -1016,3 +1016,9 @@ RPC_STATUS RPC_ENTRY RpcCancelThreadEx(void* ThreadHandle, LONG Timeout)
else
return
rpc_cancel_thread
(
target_tid
);
}
RPC_STATUS
RPC_ENTRY
NdrGetUserMarshalInfo
(
ULONG
*
flags
,
ULONG
level
,
NDR_USER_MARSHAL_INFO
*
mi
)
{
FIXME
(
"(%p, %u, %p)
\n
"
,
flags
,
level
,
mi
);
return
RPC_X_INVALID_BUFFER
;
}
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