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
ebe885d7
Commit
ebe885d7
authored
Nov 06, 2007
by
Rob Shearman
Committed by
Alexandre Julliard
Nov 07, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Add a stub for RpcErrorStartEnumeration.
parent
8ccf1066
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
rpcrt4.spec
dlls/rpcrt4/rpcrt4.spec
+1
-1
rpcrt4_main.c
dlls/rpcrt4/rpcrt4_main.c
+9
-0
No files found.
dlls/rpcrt4/rpcrt4.spec
View file @
ebe885d7
...
...
@@ -414,7 +414,7 @@
@ stub RpcErrorNumberOfRecords # wxp
@ stub RpcErrorResetEnumeration # wxp
@ stub RpcErrorSaveErrorInfo # wxp
@ st
ub RpcErrorStartEnumeration # wxp
@ st
dcall RpcErrorStartEnumeration(ptr)
@ stub RpcFreeAuthorizationContext # wxp
@ stub RpcGetAsyncCallStatus
@ stub RpcIfIdVectorFree
...
...
dlls/rpcrt4/rpcrt4_main.c
View file @
ebe885d7
...
...
@@ -828,3 +828,12 @@ DWORD WINAPI I_RpcMapWin32Status(RPC_STATUS status)
FIXME
(
"(%ld): stub
\n
"
,
status
);
return
0
;
}
/******************************************************************************
* RpcErrorStartEnumeration (rpcrt4.@)
*/
RPC_STATUS
RPC_ENTRY
RpcErrorStartEnumeration
(
void
**
EnumHandle
)
{
FIXME
(
"(%p): stub
\n
"
,
EnumHandle
);
return
RPC_S_ENTRY_NOT_FOUND
;
}
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