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
028f3be0
Commit
028f3be0
authored
Aug 13, 2012
by
Jacek Caban
Committed by
Alexandre Julliard
Aug 14, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Added RpcError* stubs.
parent
b14fb331
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
41 additions
and
5 deletions
+41
-5
rpcrt4.spec
dlls/rpcrt4/rpcrt4.spec
+5
-5
rpcrt4_main.c
dlls/rpcrt4/rpcrt4_main.c
+36
-0
No files found.
dlls/rpcrt4/rpcrt4.spec
View file @
028f3be0
...
...
@@ -53,7 +53,7 @@
@ stub I_RpcIfInqTransferSyntaxes
@ stub I_RpcLogEvent
@ stdcall I_RpcMapWin32Status(long)
@ st
ub I_RpcNegotiateTransferSyntax # wxp
@ st
dcall I_RpcNegotiateTransferSyntax(ptr)
@ stub I_RpcNsBindingSetEntryName
@ stub I_RpcNsBindingSetEntryNameA
@ stub I_RpcNsBindingSetEntryNameW
...
...
@@ -376,12 +376,12 @@
@ stdcall RpcEpUnregister(ptr ptr ptr)
@ stub RpcErrorAddRecord # wxp
@ stub RpcErrorClearInformation # wxp
@ st
ub RpcErrorEndEnumeration # wxp
@ st
ub RpcErrorGetNextRecord # wxp
@ st
ub RpcErrorLoadErrorInfo # wxp
@ st
dcall RpcErrorEndEnumeration(ptr)
@ st
dcall RpcErrorGetNextRecord(ptr long ptr)
@ st
dcall RpcErrorLoadErrorInfo(ptr long ptr)
@ stub RpcErrorNumberOfRecords # wxp
@ stub RpcErrorResetEnumeration # wxp
@ st
ub RpcErrorSaveErrorInfo # wxp
@ st
dcall RpcErrorSaveErrorInfo(ptr ptr ptr)
@ stdcall RpcErrorStartEnumeration(ptr)
@ stub RpcFreeAuthorizationContext # wxp
@ stdcall RpcGetAsyncCallStatus(ptr) RpcAsyncGetCallStatus
...
...
dlls/rpcrt4/rpcrt4_main.c
View file @
028f3be0
...
...
@@ -875,6 +875,42 @@ RPC_STATUS RPC_ENTRY RpcErrorStartEnumeration(RPC_ERROR_ENUM_HANDLE* EnumHandle)
}
/******************************************************************************
* RpcErrorEndEnumeration (rpcrt4.@)
*/
RPC_STATUS
RPC_ENTRY
RpcErrorEndEnumeration
(
RPC_ERROR_ENUM_HANDLE
*
EnumHandle
)
{
FIXME
(
"(%p): stub
\n
"
,
EnumHandle
);
return
RPC_S_OK
;
}
/******************************************************************************
* RpcErrorSaveErrorInfo (rpcrt4.@)
*/
RPC_STATUS
RPC_ENTRY
RpcErrorSaveErrorInfo
(
RPC_ERROR_ENUM_HANDLE
*
EnumHandle
,
void
**
ErrorBlob
,
SIZE_T
*
BlobSize
)
{
FIXME
(
"(%p %p %p): stub
\n
"
,
EnumHandle
,
ErrorBlob
,
BlobSize
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
/******************************************************************************
* RpcErrorLoadErrorInfo (rpcrt4.@)
*/
RPC_STATUS
RPC_ENTRY
RpcErrorLoadErrorInfo
(
void
*
ErrorBlob
,
SIZE_T
BlobSize
,
RPC_ERROR_ENUM_HANDLE
*
EnumHandle
)
{
FIXME
(
"(%p %lu %p): stub
\n
"
,
ErrorBlob
,
BlobSize
,
EnumHandle
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
/******************************************************************************
* RpcErrorGetNextRecord (rpcrt4.@)
*/
RPC_STATUS
RPC_ENTRY
RpcErrorGetNextRecord
(
RPC_ERROR_ENUM_HANDLE
*
EnumHandle
,
BOOL
CopyStrings
,
RPC_EXTENDED_ERROR_INFO
*
ErrorInfo
)
{
FIXME
(
"(%p %x %p): stub
\n
"
,
EnumHandle
,
CopyStrings
,
ErrorInfo
);
return
RPC_S_ENTRY_NOT_FOUND
;
}
/******************************************************************************
* RpcMgmtSetCancelTimeout (rpcrt4.@)
*/
RPC_STATUS
RPC_ENTRY
RpcMgmtSetCancelTimeout
(
LONG
Timeout
)
...
...
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