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
62662d21
Commit
62662d21
authored
Feb 06, 2007
by
Francois Gouget
Committed by
Alexandre Julliard
Feb 06, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Improve the prototypes Win64 compatibility by replacing long with LONG.
parent
e6979d56
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
66 additions
and
67 deletions
+66
-67
rpc_binding.c
dlls/rpcrt4/rpc_binding.c
+33
-33
rpc_server.c
dlls/rpcrt4/rpc_server.c
+9
-9
rpcdce.h
include/rpcdce.h
+22
-22
win32.api
tools/winapi/win32.api
+2
-3
No files found.
dlls/rpcrt4/rpc_binding.c
View file @
62662d21
...
...
@@ -940,7 +940,7 @@ RPC_STATUS WINAPI RpcRevertToSelfEx(RPC_BINDING_HANDLE BindingHandle)
return
RPC_S_OK
;
}
static
RPC_STATUS
RpcAuthInfo_Create
(
unsigned
long
AuthnLevel
,
unsigned
long
AuthnSvc
,
CredHandle
cred
,
TimeStamp
exp
,
RpcAuthInfo
**
ret
)
static
RPC_STATUS
RpcAuthInfo_Create
(
ULONG
AuthnLevel
,
ULONG
AuthnSvc
,
CredHandle
cred
,
TimeStamp
exp
,
RpcAuthInfo
**
ret
)
{
RpcAuthInfo
*
AuthInfo
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
*
AuthInfo
));
if
(
!
AuthInfo
)
...
...
@@ -1136,11 +1136,11 @@ RPC_STATUS WINAPI RpcMgmtSetComTimeout(RPC_BINDING_HANDLE BindingHandle, unsigne
* RpcBindingInqAuthInfoExA (RPCRT4.@)
*/
RPCRTAPI
RPC_STATUS
RPC_ENTRY
RpcBindingInqAuthInfoExA
(
RPC_BINDING_HANDLE
Binding
,
RPC_CSTR
*
ServerPrincName
,
unsigned
long
*
AuthnLevel
,
unsigned
long
*
AuthnSvc
,
RPC_AUTH_IDENTITY_HANDLE
*
AuthIdentity
,
unsigned
long
*
AuthzSvc
,
unsigned
long
RpcQosVersion
,
RPC_SECURITY_QOS
*
SecurityQOS
)
RpcBindingInqAuthInfoExA
(
RPC_BINDING_HANDLE
Binding
,
RPC_CSTR
*
ServerPrincName
,
ULONG
*
AuthnLevel
,
ULONG
*
AuthnSvc
,
RPC_AUTH_IDENTITY_HANDLE
*
AuthIdentity
,
ULONG
*
AuthzSvc
,
ULONG
RpcQosVersion
,
RPC_SECURITY_QOS
*
SecurityQOS
)
{
FIXME
(
"%p %p %p %p %p %p %
l
u %p
\n
"
,
Binding
,
ServerPrincName
,
AuthnLevel
,
FIXME
(
"%p %p %p %p %p %p %u %p
\n
"
,
Binding
,
ServerPrincName
,
AuthnLevel
,
AuthnSvc
,
AuthIdentity
,
AuthzSvc
,
RpcQosVersion
,
SecurityQOS
);
return
RPC_S_INVALID_BINDING
;
}
...
...
@@ -1149,11 +1149,11 @@ RpcBindingInqAuthInfoExA( RPC_BINDING_HANDLE Binding, RPC_CSTR *ServerPrincName,
* RpcBindingInqAuthInfoExW (RPCRT4.@)
*/
RPCRTAPI
RPC_STATUS
RPC_ENTRY
RpcBindingInqAuthInfoExW
(
RPC_BINDING_HANDLE
Binding
,
RPC_WSTR
*
ServerPrincName
,
unsigned
long
*
AuthnLevel
,
unsigned
long
*
AuthnSvc
,
RPC_AUTH_IDENTITY_HANDLE
*
AuthIdentity
,
unsigned
long
*
AuthzSvc
,
unsigned
long
RpcQosVersion
,
RPC_SECURITY_QOS
*
SecurityQOS
)
RpcBindingInqAuthInfoExW
(
RPC_BINDING_HANDLE
Binding
,
RPC_WSTR
*
ServerPrincName
,
ULONG
*
AuthnLevel
,
ULONG
*
AuthnSvc
,
RPC_AUTH_IDENTITY_HANDLE
*
AuthIdentity
,
ULONG
*
AuthzSvc
,
ULONG
RpcQosVersion
,
RPC_SECURITY_QOS
*
SecurityQOS
)
{
FIXME
(
"%p %p %p %p %p %p %
l
u %p
\n
"
,
Binding
,
ServerPrincName
,
AuthnLevel
,
FIXME
(
"%p %p %p %p %p %p %u %p
\n
"
,
Binding
,
ServerPrincName
,
AuthnLevel
,
AuthnSvc
,
AuthIdentity
,
AuthzSvc
,
RpcQosVersion
,
SecurityQOS
);
return
RPC_S_INVALID_BINDING
;
}
...
...
@@ -1162,8 +1162,8 @@ RpcBindingInqAuthInfoExW( RPC_BINDING_HANDLE Binding, RPC_WSTR *ServerPrincName,
* RpcBindingInqAuthInfoA (RPCRT4.@)
*/
RPCRTAPI
RPC_STATUS
RPC_ENTRY
RpcBindingInqAuthInfoA
(
RPC_BINDING_HANDLE
Binding
,
RPC_CSTR
*
ServerPrincName
,
unsigned
long
*
AuthnLevel
,
unsigned
long
*
AuthnSvc
,
RPC_AUTH_IDENTITY_HANDLE
*
AuthIdentity
,
unsigned
long
*
AuthzSvc
)
RpcBindingInqAuthInfoA
(
RPC_BINDING_HANDLE
Binding
,
RPC_CSTR
*
ServerPrincName
,
ULONG
*
AuthnLevel
,
ULONG
*
AuthnSvc
,
RPC_AUTH_IDENTITY_HANDLE
*
AuthIdentity
,
ULONG
*
AuthzSvc
)
{
FIXME
(
"%p %p %p %p %p %p
\n
"
,
Binding
,
ServerPrincName
,
AuthnLevel
,
AuthnSvc
,
AuthIdentity
,
AuthzSvc
);
...
...
@@ -1174,8 +1174,8 @@ RpcBindingInqAuthInfoA( RPC_BINDING_HANDLE Binding, RPC_CSTR *ServerPrincName, u
* RpcBindingInqAuthInfoW (RPCRT4.@)
*/
RPCRTAPI
RPC_STATUS
RPC_ENTRY
RpcBindingInqAuthInfoW
(
RPC_BINDING_HANDLE
Binding
,
RPC_WSTR
*
ServerPrincName
,
unsigned
long
*
AuthnLevel
,
unsigned
long
*
AuthnSvc
,
RPC_AUTH_IDENTITY_HANDLE
*
AuthIdentity
,
unsigned
long
*
AuthzSvc
)
RpcBindingInqAuthInfoW
(
RPC_BINDING_HANDLE
Binding
,
RPC_WSTR
*
ServerPrincName
,
ULONG
*
AuthnLevel
,
ULONG
*
AuthnSvc
,
RPC_AUTH_IDENTITY_HANDLE
*
AuthIdentity
,
ULONG
*
AuthzSvc
)
{
FIXME
(
"%p %p %p %p %p %p
\n
"
,
Binding
,
ServerPrincName
,
AuthnLevel
,
AuthnSvc
,
AuthIdentity
,
AuthzSvc
);
...
...
@@ -1187,8 +1187,8 @@ RpcBindingInqAuthInfoW( RPC_BINDING_HANDLE Binding, RPC_WSTR *ServerPrincName, u
*/
RPCRTAPI
RPC_STATUS
RPC_ENTRY
RpcBindingSetAuthInfoExA
(
RPC_BINDING_HANDLE
Binding
,
RPC_CSTR
ServerPrincName
,
unsigned
long
AuthnLevel
,
unsigned
long
AuthnSvc
,
RPC_AUTH_IDENTITY_HANDLE
AuthIdentity
,
unsigned
long
AuthzSvr
,
ULONG
AuthnLevel
,
ULONG
AuthnSvc
,
RPC_AUTH_IDENTITY_HANDLE
AuthIdentity
,
ULONG
AuthzSvr
,
RPC_SECURITY_QOS
*
SecurityQos
)
{
RpcBinding
*
bind
=
(
RpcBinding
*
)
Binding
;
...
...
@@ -1199,7 +1199,7 @@ RpcBindingSetAuthInfoExA( RPC_BINDING_HANDLE Binding, RPC_CSTR ServerPrincName,
ULONG
i
;
PSecPkgInfoA
packages
;
TRACE
(
"%p %s %
lu %lu %p %l
u %p
\n
"
,
Binding
,
debugstr_a
((
const
char
*
)
ServerPrincName
),
TRACE
(
"%p %s %
u %u %p %
u %p
\n
"
,
Binding
,
debugstr_a
((
const
char
*
)
ServerPrincName
),
AuthnLevel
,
AuthnSvc
,
AuthIdentity
,
AuthzSvr
,
SecurityQos
);
if
(
SecurityQos
)
...
...
@@ -1248,13 +1248,13 @@ RpcBindingSetAuthInfoExA( RPC_BINDING_HANDLE Binding, RPC_CSTR ServerPrincName,
if
(
AuthnLevel
>
RPC_C_AUTHN_LEVEL_PKT_PRIVACY
)
{
FIXME
(
"unknown AuthnLevel %
l
u
\n
"
,
AuthnLevel
);
FIXME
(
"unknown AuthnLevel %u
\n
"
,
AuthnLevel
);
return
RPC_S_UNKNOWN_AUTHN_LEVEL
;
}
if
(
AuthzSvr
)
{
FIXME
(
"unsupported AuthzSvr %
l
u
\n
"
,
AuthzSvr
);
FIXME
(
"unsupported AuthzSvr %u
\n
"
,
AuthzSvr
);
return
RPC_S_UNKNOWN_AUTHZ_SERVICE
;
}
...
...
@@ -1271,12 +1271,12 @@ RpcBindingSetAuthInfoExA( RPC_BINDING_HANDLE Binding, RPC_CSTR ServerPrincName,
if
(
i
==
package_count
)
{
FIXME
(
"unsupported AuthnSvc %
l
u
\n
"
,
AuthnSvc
);
FIXME
(
"unsupported AuthnSvc %u
\n
"
,
AuthnSvc
);
FreeContextBuffer
(
packages
);
return
RPC_S_UNKNOWN_AUTHN_SERVICE
;
}
TRACE
(
"found package %s for service %
ld
\n
"
,
packages
[
i
].
Name
,
AuthnSvc
);
TRACE
(
"found package %s for service %
u
\n
"
,
packages
[
i
].
Name
,
AuthnSvc
);
r
=
AcquireCredentialsHandleA
((
SEC_CHAR
*
)
ServerPrincName
,
packages
[
i
].
Name
,
SECPKG_CRED_OUTBOUND
,
NULL
,
AuthIdentity
,
NULL
,
NULL
,
&
cred
,
&
exp
);
FreeContextBuffer
(
packages
);
...
...
@@ -1300,8 +1300,8 @@ RpcBindingSetAuthInfoExA( RPC_BINDING_HANDLE Binding, RPC_CSTR ServerPrincName,
* RpcBindingSetAuthInfoExW (RPCRT4.@)
*/
RPCRTAPI
RPC_STATUS
RPC_ENTRY
RpcBindingSetAuthInfoExW
(
RPC_BINDING_HANDLE
Binding
,
RPC_WSTR
ServerPrincName
,
unsigned
long
AuthnLevel
,
unsigned
long
AuthnSvc
,
RPC_AUTH_IDENTITY_HANDLE
AuthIdentity
,
unsigned
long
AuthzSvr
,
RpcBindingSetAuthInfoExW
(
RPC_BINDING_HANDLE
Binding
,
RPC_WSTR
ServerPrincName
,
ULONG
AuthnLevel
,
ULONG
AuthnSvc
,
RPC_AUTH_IDENTITY_HANDLE
AuthIdentity
,
ULONG
AuthzSvr
,
RPC_SECURITY_QOS
*
SecurityQos
)
{
RpcBinding
*
bind
=
(
RpcBinding
*
)
Binding
;
...
...
@@ -1312,7 +1312,7 @@ RpcBindingSetAuthInfoExW( RPC_BINDING_HANDLE Binding, RPC_WSTR ServerPrincName,
ULONG
i
;
PSecPkgInfoW
packages
;
TRACE
(
"%p %s %
lu %lu %p %l
u %p
\n
"
,
Binding
,
debugstr_w
((
const
WCHAR
*
)
ServerPrincName
),
TRACE
(
"%p %s %
u %u %p %
u %p
\n
"
,
Binding
,
debugstr_w
((
const
WCHAR
*
)
ServerPrincName
),
AuthnLevel
,
AuthnSvc
,
AuthIdentity
,
AuthzSvr
,
SecurityQos
);
if
(
SecurityQos
)
...
...
@@ -1361,13 +1361,13 @@ RpcBindingSetAuthInfoExW( RPC_BINDING_HANDLE Binding, RPC_WSTR ServerPrincName,
if
(
AuthnLevel
>
RPC_C_AUTHN_LEVEL_PKT_PRIVACY
)
{
FIXME
(
"unknown AuthnLevel %
l
u
\n
"
,
AuthnLevel
);
FIXME
(
"unknown AuthnLevel %u
\n
"
,
AuthnLevel
);
return
RPC_S_UNKNOWN_AUTHN_LEVEL
;
}
if
(
AuthzSvr
)
{
FIXME
(
"unsupported AuthzSvr %
l
u
\n
"
,
AuthzSvr
);
FIXME
(
"unsupported AuthzSvr %u
\n
"
,
AuthzSvr
);
return
RPC_S_UNKNOWN_AUTHZ_SERVICE
;
}
...
...
@@ -1384,12 +1384,12 @@ RpcBindingSetAuthInfoExW( RPC_BINDING_HANDLE Binding, RPC_WSTR ServerPrincName,
if
(
i
==
package_count
)
{
FIXME
(
"unsupported AuthnSvc %
l
u
\n
"
,
AuthnSvc
);
FIXME
(
"unsupported AuthnSvc %u
\n
"
,
AuthnSvc
);
FreeContextBuffer
(
packages
);
return
RPC_S_UNKNOWN_AUTHN_SERVICE
;
}
TRACE
(
"found package %s for service %
ld
\n
"
,
debugstr_w
(
packages
[
i
].
Name
),
AuthnSvc
);
TRACE
(
"found package %s for service %
u
\n
"
,
debugstr_w
(
packages
[
i
].
Name
),
AuthnSvc
);
r
=
AcquireCredentialsHandleW
((
SEC_WCHAR
*
)
ServerPrincName
,
packages
[
i
].
Name
,
SECPKG_CRED_OUTBOUND
,
NULL
,
AuthIdentity
,
NULL
,
NULL
,
&
cred
,
&
exp
);
FreeContextBuffer
(
packages
);
...
...
@@ -1413,10 +1413,10 @@ RpcBindingSetAuthInfoExW( RPC_BINDING_HANDLE Binding, RPC_WSTR ServerPrincName,
* RpcBindingSetAuthInfoA (RPCRT4.@)
*/
RPCRTAPI
RPC_STATUS
RPC_ENTRY
RpcBindingSetAuthInfoA
(
RPC_BINDING_HANDLE
Binding
,
RPC_CSTR
ServerPrincName
,
unsigned
long
AuthnLevel
,
unsigned
long
AuthnSvc
,
RPC_AUTH_IDENTITY_HANDLE
AuthIdentity
,
unsigned
long
AuthzSvr
)
RpcBindingSetAuthInfoA
(
RPC_BINDING_HANDLE
Binding
,
RPC_CSTR
ServerPrincName
,
ULONG
AuthnLevel
,
ULONG
AuthnSvc
,
RPC_AUTH_IDENTITY_HANDLE
AuthIdentity
,
ULONG
AuthzSvr
)
{
TRACE
(
"%p %s %
lu %lu %p %l
u
\n
"
,
Binding
,
debugstr_a
((
const
char
*
)
ServerPrincName
),
TRACE
(
"%p %s %
u %u %p %
u
\n
"
,
Binding
,
debugstr_a
((
const
char
*
)
ServerPrincName
),
AuthnLevel
,
AuthnSvc
,
AuthIdentity
,
AuthzSvr
);
return
RpcBindingSetAuthInfoExA
(
Binding
,
ServerPrincName
,
AuthnLevel
,
AuthnSvc
,
AuthIdentity
,
AuthzSvr
,
NULL
);
}
...
...
@@ -1425,10 +1425,10 @@ RpcBindingSetAuthInfoA( RPC_BINDING_HANDLE Binding, RPC_CSTR ServerPrincName, un
* RpcBindingSetAuthInfoW (RPCRT4.@)
*/
RPCRTAPI
RPC_STATUS
RPC_ENTRY
RpcBindingSetAuthInfoW
(
RPC_BINDING_HANDLE
Binding
,
RPC_WSTR
ServerPrincName
,
unsigned
long
AuthnLevel
,
unsigned
long
AuthnSvc
,
RPC_AUTH_IDENTITY_HANDLE
AuthIdentity
,
unsigned
long
AuthzSvr
)
RpcBindingSetAuthInfoW
(
RPC_BINDING_HANDLE
Binding
,
RPC_WSTR
ServerPrincName
,
ULONG
AuthnLevel
,
ULONG
AuthnSvc
,
RPC_AUTH_IDENTITY_HANDLE
AuthIdentity
,
ULONG
AuthzSvr
)
{
TRACE
(
"%p %s %
lu %lu %p %l
u
\n
"
,
Binding
,
debugstr_w
((
const
WCHAR
*
)
ServerPrincName
),
TRACE
(
"%p %s %
u %u %p %
u
\n
"
,
Binding
,
debugstr_w
((
const
WCHAR
*
)
ServerPrincName
),
AuthnLevel
,
AuthnSvc
,
AuthIdentity
,
AuthzSvr
);
return
RpcBindingSetAuthInfoExW
(
Binding
,
ServerPrincName
,
AuthnLevel
,
AuthnSvc
,
AuthIdentity
,
AuthzSvr
,
NULL
);
}
...
...
dlls/rpcrt4/rpc_server.c
View file @
62662d21
...
...
@@ -940,10 +940,10 @@ RPC_STATUS WINAPI RpcObjectSetType( UUID* ObjUuid, UUID* TypeUuid )
/***********************************************************************
* RpcServerRegisterAuthInfoA (RPCRT4.@)
*/
RPC_STATUS
WINAPI
RpcServerRegisterAuthInfoA
(
RPC_CSTR
ServerPrincName
,
unsigned
long
AuthnSvc
,
RPC_AUTH_KEY_RETRIEVAL_FN
GetKeyFn
,
RPC_STATUS
WINAPI
RpcServerRegisterAuthInfoA
(
RPC_CSTR
ServerPrincName
,
ULONG
AuthnSvc
,
RPC_AUTH_KEY_RETRIEVAL_FN
GetKeyFn
,
LPVOID
Arg
)
{
FIXME
(
"(%s,%
l
u,%p,%p): stub
\n
"
,
ServerPrincName
,
AuthnSvc
,
GetKeyFn
,
Arg
);
FIXME
(
"(%s,%u,%p,%p): stub
\n
"
,
ServerPrincName
,
AuthnSvc
,
GetKeyFn
,
Arg
);
return
RPC_S_UNKNOWN_AUTHN_SERVICE
;
/* We don't know any authentication services */
}
...
...
@@ -951,10 +951,10 @@ RPC_STATUS WINAPI RpcServerRegisterAuthInfoA( RPC_CSTR ServerPrincName, unsigned
/***********************************************************************
* RpcServerRegisterAuthInfoW (RPCRT4.@)
*/
RPC_STATUS
WINAPI
RpcServerRegisterAuthInfoW
(
RPC_WSTR
ServerPrincName
,
unsigned
long
AuthnSvc
,
RPC_AUTH_KEY_RETRIEVAL_FN
GetKeyFn
,
RPC_STATUS
WINAPI
RpcServerRegisterAuthInfoW
(
RPC_WSTR
ServerPrincName
,
ULONG
AuthnSvc
,
RPC_AUTH_KEY_RETRIEVAL_FN
GetKeyFn
,
LPVOID
Arg
)
{
FIXME
(
"(%s,%
l
u,%p,%p): stub
\n
"
,
debugstr_w
(
ServerPrincName
),
AuthnSvc
,
GetKeyFn
,
Arg
);
FIXME
(
"(%s,%u,%p,%p): stub
\n
"
,
debugstr_w
(
ServerPrincName
),
AuthnSvc
,
GetKeyFn
,
Arg
);
return
RPC_S_UNKNOWN_AUTHN_SERVICE
;
/* We don't know any authentication services */
}
...
...
@@ -1067,10 +1067,10 @@ RPC_STATUS WINAPI RpcMgmtInqIfIds(RPC_BINDING_HANDLE Binding, RPC_IF_ID_VECTOR *
/***********************************************************************
* RpcMgmtEpEltInqBegin (RPCRT4.@)
*/
RPC_STATUS
WINAPI
RpcMgmtEpEltInqBegin
(
RPC_BINDING_HANDLE
Binding
,
unsigned
long
InquiryType
,
RPC_IF_ID
*
IfId
,
unsigned
long
VersOption
,
UUID
*
ObjectUuid
,
RPC_EP_INQ_HANDLE
*
InquiryContext
)
RPC_STATUS
WINAPI
RpcMgmtEpEltInqBegin
(
RPC_BINDING_HANDLE
Binding
,
ULONG
InquiryType
,
RPC_IF_ID
*
IfId
,
ULONG
VersOption
,
UUID
*
ObjectUuid
,
RPC_EP_INQ_HANDLE
*
InquiryContext
)
{
FIXME
(
"(%p,%
lu,%p,%l
u,%p,%p): stub
\n
"
,
FIXME
(
"(%p,%
u,%p,%
u,%p,%p): stub
\n
"
,
Binding
,
InquiryType
,
IfId
,
VersOption
,
ObjectUuid
,
InquiryContext
);
return
RPC_S_INVALID_BINDING
;
}
...
...
@@ -1087,8 +1087,8 @@ RPC_STATUS WINAPI RpcMgmtIsServerListening(RPC_BINDING_HANDLE Binding)
/***********************************************************************
* RpcMgmtSetServerStackSize (RPCRT4.@)
*/
RPC_STATUS
WINAPI
RpcMgmtSetServerStackSize
(
unsigned
long
ThreadStackSize
)
RPC_STATUS
WINAPI
RpcMgmtSetServerStackSize
(
ULONG
ThreadStackSize
)
{
FIXME
(
"(0x%
l
x): stub
\n
"
,
ThreadStackSize
);
FIXME
(
"(0x%x): stub
\n
"
,
ThreadStackSize
);
return
RPC_S_OK
;
}
include/rpcdce.h
View file @
62662d21
...
...
@@ -377,8 +377,8 @@ RPCRTAPI RPC_STATUS RPC_ENTRY
RpcMgmtInqIfIds
(
RPC_BINDING_HANDLE
Binding
,
RPC_IF_ID_VECTOR
**
IfIdVector
);
RPCRTAPI
RPC_STATUS
RPC_ENTRY
RpcMgmtEpEltInqBegin
(
RPC_BINDING_HANDLE
EpBinding
,
unsigned
long
InquiryType
,
RPC_IF_ID
*
IfId
,
unsigned
long
VersOption
,
UUID
*
ObjectUuid
,
RPC_EP_INQ_HANDLE
*
InquiryContext
);
RpcMgmtEpEltInqBegin
(
RPC_BINDING_HANDLE
EpBinding
,
ULONG
InquiryType
,
RPC_IF_ID
*
IfId
,
ULONG
VersOption
,
UUID
*
ObjectUuid
,
RPC_EP_INQ_HANDLE
*
InquiryContext
);
RPCRTAPI
RPC_STATUS
RPC_ENTRY
RpcServerRegisterIf
(
RPC_IF_HANDLE
IfSpec
,
UUID
*
MgrTypeUuid
,
RPC_MGR_EPV
*
MgrEpv
);
...
...
@@ -419,51 +419,51 @@ RPCRTAPI RPC_STATUS RPC_ENTRY
#define RpcServerUseProtseqEpEx WINELIB_NAME_AW(RpcServerUseProtseqEpEx)
RPCRTAPI
RPC_STATUS
RPC_ENTRY
RpcServerRegisterAuthInfoA
(
RPC_CSTR
ServerPrincName
,
unsigned
long
AuthnSvc
,
RPC_AUTH_KEY_RETRIEVAL_FN
GetKeyFn
,
RpcServerRegisterAuthInfoA
(
RPC_CSTR
ServerPrincName
,
ULONG
AuthnSvc
,
RPC_AUTH_KEY_RETRIEVAL_FN
GetKeyFn
,
void
*
Arg
);
RPCRTAPI
RPC_STATUS
RPC_ENTRY
RpcServerRegisterAuthInfoW
(
RPC_WSTR
ServerPrincName
,
unsigned
long
AuthnSvc
,
RPC_AUTH_KEY_RETRIEVAL_FN
GetKeyFn
,
RpcServerRegisterAuthInfoW
(
RPC_WSTR
ServerPrincName
,
ULONG
AuthnSvc
,
RPC_AUTH_KEY_RETRIEVAL_FN
GetKeyFn
,
void
*
Arg
);
#define RpcServerRegisterAuthInfo WINELIB_NAME_AW(RpcServerRegisterAuthInfo)
RPCRTAPI
RPC_STATUS
RPC_ENTRY
RpcBindingSetAuthInfoExA
(
RPC_BINDING_HANDLE
Binding
,
RPC_CSTR
ServerPrincName
,
unsigned
long
AuthnLevel
,
unsigned
long
AuthnSvc
,
RPC_AUTH_IDENTITY_HANDLE
AuthIdentity
,
unsigned
long
AuthzSvr
,
RpcBindingSetAuthInfoExA
(
RPC_BINDING_HANDLE
Binding
,
RPC_CSTR
ServerPrincName
,
ULONG
AuthnLevel
,
ULONG
AuthnSvc
,
RPC_AUTH_IDENTITY_HANDLE
AuthIdentity
,
ULONG
AuthzSvr
,
RPC_SECURITY_QOS
*
SecurityQos
);
RPCRTAPI
RPC_STATUS
RPC_ENTRY
RpcBindingSetAuthInfoExW
(
RPC_BINDING_HANDLE
Binding
,
RPC_WSTR
ServerPrincName
,
unsigned
long
AuthnLevel
,
unsigned
long
AuthnSvc
,
RPC_AUTH_IDENTITY_HANDLE
AuthIdentity
,
unsigned
long
AuthzSvr
,
RpcBindingSetAuthInfoExW
(
RPC_BINDING_HANDLE
Binding
,
RPC_WSTR
ServerPrincName
,
ULONG
AuthnLevel
,
ULONG
AuthnSvc
,
RPC_AUTH_IDENTITY_HANDLE
AuthIdentity
,
ULONG
AuthzSvr
,
RPC_SECURITY_QOS
*
SecurityQos
);
#define RpcBindingSetAuthInfoEx WINELIB_NAME_AW(RpcBindingSetAuthInfoEx)
RPCRTAPI
RPC_STATUS
RPC_ENTRY
RpcBindingSetAuthInfoA
(
RPC_BINDING_HANDLE
Binding
,
RPC_CSTR
ServerPrincName
,
unsigned
long
AuthnLevel
,
unsigned
long
AuthnSvc
,
RPC_AUTH_IDENTITY_HANDLE
AuthIdentity
,
unsigned
long
AuthzSvr
);
RpcBindingSetAuthInfoA
(
RPC_BINDING_HANDLE
Binding
,
RPC_CSTR
ServerPrincName
,
ULONG
AuthnLevel
,
ULONG
AuthnSvc
,
RPC_AUTH_IDENTITY_HANDLE
AuthIdentity
,
ULONG
AuthzSvr
);
RPCRTAPI
RPC_STATUS
RPC_ENTRY
RpcBindingSetAuthInfoW
(
RPC_BINDING_HANDLE
Binding
,
RPC_WSTR
ServerPrincName
,
unsigned
long
AuthnLevel
,
unsigned
long
AuthnSvc
,
RPC_AUTH_IDENTITY_HANDLE
AuthIdentity
,
unsigned
long
AuthzSvr
);
RpcBindingSetAuthInfoW
(
RPC_BINDING_HANDLE
Binding
,
RPC_WSTR
ServerPrincName
,
ULONG
AuthnLevel
,
ULONG
AuthnSvc
,
RPC_AUTH_IDENTITY_HANDLE
AuthIdentity
,
ULONG
AuthzSvr
);
#define RpcBindingSetAuthInfo WINELIB_NAME_AW(RpcBindingSetAuthInfo)
RPCRTAPI
RPC_STATUS
RPC_ENTRY
RpcBindingInqAuthInfoExA
(
RPC_BINDING_HANDLE
Binding
,
RPC_CSTR
*
ServerPrincName
,
unsigned
long
*
AuthnLevel
,
unsigned
long
*
AuthnSvc
,
RPC_AUTH_IDENTITY_HANDLE
*
AuthIdentity
,
unsigned
long
*
AuthzSvc
,
unsigned
long
RpcQosVersion
,
RPC_SECURITY_QOS
*
SecurityQOS
);
RpcBindingInqAuthInfoExA
(
RPC_BINDING_HANDLE
Binding
,
RPC_CSTR
*
ServerPrincName
,
ULONG
*
AuthnLevel
,
ULONG
*
AuthnSvc
,
RPC_AUTH_IDENTITY_HANDLE
*
AuthIdentity
,
ULONG
*
AuthzSvc
,
ULONG
RpcQosVersion
,
RPC_SECURITY_QOS
*
SecurityQOS
);
RPCRTAPI
RPC_STATUS
RPC_ENTRY
RpcBindingInqAuthInfoExW
(
RPC_BINDING_HANDLE
Binding
,
RPC_WSTR
*
ServerPrincName
,
unsigned
long
*
AuthnLevel
,
unsigned
long
*
AuthnSvc
,
RPC_AUTH_IDENTITY_HANDLE
*
AuthIdentity
,
unsigned
long
*
AuthzSvc
,
unsigned
long
RpcQosVersion
,
RPC_SECURITY_QOS
*
SecurityQOS
);
RpcBindingInqAuthInfoExW
(
RPC_BINDING_HANDLE
Binding
,
RPC_WSTR
*
ServerPrincName
,
ULONG
*
AuthnLevel
,
ULONG
*
AuthnSvc
,
RPC_AUTH_IDENTITY_HANDLE
*
AuthIdentity
,
ULONG
*
AuthzSvc
,
ULONG
RpcQosVersion
,
RPC_SECURITY_QOS
*
SecurityQOS
);
#define RpcBindingInqAuthInfoEx WINELIB_NAME_AW(RpcBindingInqAuthInfoEx)
RPCRTAPI
RPC_STATUS
RPC_ENTRY
RpcBindingInqAuthInfoA
(
RPC_BINDING_HANDLE
Binding
,
RPC_CSTR
*
ServerPrincName
,
unsigned
long
*
AuthnLevel
,
unsigned
long
*
AuthnSvc
,
RPC_AUTH_IDENTITY_HANDLE
*
AuthIdentity
,
unsigned
long
*
AuthzSvc
);
RpcBindingInqAuthInfoA
(
RPC_BINDING_HANDLE
Binding
,
RPC_CSTR
*
ServerPrincName
,
ULONG
*
AuthnLevel
,
ULONG
*
AuthnSvc
,
RPC_AUTH_IDENTITY_HANDLE
*
AuthIdentity
,
ULONG
*
AuthzSvc
);
RPCRTAPI
RPC_STATUS
RPC_ENTRY
RpcBindingInqAuthInfoW
(
RPC_BINDING_HANDLE
Binding
,
RPC_WSTR
*
ServerPrincName
,
unsigned
long
*
AuthnLevel
,
unsigned
long
*
AuthnSvc
,
RPC_AUTH_IDENTITY_HANDLE
*
AuthIdentity
,
unsigned
long
*
AuthzSvc
);
RpcBindingInqAuthInfoW
(
RPC_BINDING_HANDLE
Binding
,
RPC_WSTR
*
ServerPrincName
,
ULONG
*
AuthnLevel
,
ULONG
*
AuthnSvc
,
RPC_AUTH_IDENTITY_HANDLE
*
AuthIdentity
,
ULONG
*
AuthzSvc
);
#define RpcBindingInqAuthInfo WINELIB_NAME_AW(RpcBindingInqAuthInfo)
RPCRTAPI
RPC_STATUS
RPC_ENTRY
...
...
tools/winapi/win32.api
View file @
62662d21
...
...
@@ -3618,17 +3618,16 @@ DWORD
HMODULE
HRESULT
HWND
LONG
RPC_BINDING_HANDLE
RPC_IF_HANDLE
RPC_STATUS
UINT
ULONG
int
long
size_t
unsigned char
unsigned int
unsigned long
unsigned short
%long --pointer
...
...
@@ -3675,11 +3674,11 @@ RPC_MGR_EPV *
RPC_STATUS *
UUID *
UUID_VECTOR *
ULONG *
struct IRpcChannelBuffer *
struct IRpcStubBuffer *
unsigned char *
unsigned char **
unsigned long *
unsigned short *
unsigned short **
void *
...
...
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