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
79bbddd4
Commit
79bbddd4
authored
Oct 22, 2008
by
Stefan Leichter
Committed by
Alexandre Julliard
Oct 23, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Add stub for MesEncodeDynBufferHandleCreate.
parent
f410cf7c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
2 deletions
+13
-2
ndr_es.c
dlls/rpcrt4/ndr_es.c
+12
-1
rpcrt4.spec
dlls/rpcrt4/rpcrt4.spec
+1
-1
No files found.
dlls/rpcrt4/ndr_es.c
View file @
79bbddd4
...
...
@@ -156,7 +156,18 @@ RPC_STATUS RPC_ENTRY MesEncodeFixedBufferHandleCreate(
*
pHandle
=
(
handle_t
)
pEsMsg
;
return
RPC_S_OK
;}
return
RPC_S_OK
;
}
/***********************************************************************
* MesEncodeDynBufferHandleCreate [RPCRT4.@]
*/
RPC_STATUS
RPC_ENTRY
MesEncodeDynBufferHandleCreate
(
char
**
ppBuffer
,
ULONG
*
pEncodedSize
,
handle_t
*
pHandle
)
{
FIXME
(
"%p %p %p stub
\n
"
,
ppBuffer
,
pEncodedSize
,
pHandle
);
return
RPC_S_OK
;
}
/***********************************************************************
* MesDecodeBufferHandleCreate [RPCRT4.@]
...
...
dlls/rpcrt4/rpcrt4.spec
View file @
79bbddd4
...
...
@@ -99,7 +99,7 @@
@ stub MesBufferHandleReset
@ stdcall MesDecodeBufferHandleCreate(ptr long ptr)
@ stdcall MesDecodeIncrementalHandleCreate(ptr ptr ptr)
@ st
ub MesEncodeDynBufferHandleCreate
@ st
dcall MesEncodeDynBufferHandleCreate(ptr ptr ptr)
@ stdcall MesEncodeFixedBufferHandleCreate(ptr long ptr ptr)
@ stdcall MesEncodeIncrementalHandleCreate(ptr ptr ptr ptr)
@ stdcall MesHandleFree(ptr)
...
...
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