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
f0c49dae
Commit
f0c49dae
authored
Apr 19, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
Apr 19, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Add a stub implementation for rpcrt4.RpcMgmtInqIfIds().
parent
9aa468d8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
1 deletion
+16
-1
rpc_server.c
dlls/rpcrt4/rpc_server.c
+6
-0
rpcrt4.spec
dlls/rpcrt4/rpcrt4.spec
+1
-1
rpcdce.h
include/rpcdce.h
+9
-0
No files found.
dlls/rpcrt4/rpc_server.c
View file @
f0c49dae
...
...
@@ -1050,3 +1050,9 @@ UINT WINAPI I_RpcWindowProc( void *hWnd, UINT Message, UINT wParam, ULONG lParam
return
0
;
}
RPC_STATUS
WINAPI
RpcMgmtInqIfIds
(
RPC_BINDING_HANDLE
Binding
,
RPC_IF_ID_VECTOR
**
IfIdVector
)
{
FIXME
(
"(%p,%p): stub
\n
"
,
Binding
,
IfIdVector
);
return
RPC_S_INVALID_BINDING
;
}
dlls/rpcrt4/rpcrt4.spec
View file @
f0c49dae
...
...
@@ -431,7 +431,7 @@
@ stub RpcMgmtEpUnregister
@ stub RpcMgmtInqComTimeout
@ stub RpcMgmtInqDefaultProtectLevel
@ st
ub RpcMgmtInqIfIds
@ st
dcall RpcMgmtInqIfIds(ptr ptr)
@ stub RpcMgmtInqParameter # win9x
@ stub RpcMgmtInqServerPrincNameA
@ stub RpcMgmtInqServerPrincNameW
...
...
include/rpcdce.h
View file @
f0c49dae
...
...
@@ -71,6 +71,12 @@ typedef struct _RPC_IF_ID
unsigned
short
VersMinor
;
}
RPC_IF_ID
;
typedef
struct
{
unsigned
long
Count
;
RPC_IF_ID
*
IfId
[
1
];
}
RPC_IF_ID_VECTOR
;
#define RPC_C_BINDING_INFINITE_TIMEOUT 10
#define RPC_C_BINDING_MIN_TIMEOUT 0
#define RPC_C_BINDING_DEFAULT_TIMEOUT 5
...
...
@@ -232,6 +238,9 @@ RPCRTAPI RPC_STATUS RPC_ENTRY
RpcMgmtStopServerListening
(
RPC_BINDING_HANDLE
Binding
);
RPCRTAPI
RPC_STATUS
RPC_ENTRY
RpcMgmtInqIfIds
(
RPC_BINDING_HANDLE
Binding
,
RPC_IF_ID_VECTOR
**
IfIdVector
);
RPCRTAPI
RPC_STATUS
RPC_ENTRY
RpcServerRegisterIf
(
RPC_IF_HANDLE
IfSpec
,
UUID
*
MgrTypeUuid
,
RPC_MGR_EPV
*
MgrEpv
);
RPCRTAPI
RPC_STATUS
RPC_ENTRY
...
...
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