mirror of
https://github.com/reactos/reactos.git
synced 2025-05-06 18:31:26 +00:00
[LSASRV][IDL] The first parameter of the Credr* functions is a PLSAPR_SERVER_NAME.
This commit is contained in:
parent
8f2c4f7a6d
commit
0ce15a8faa
2 changed files with 24 additions and 24 deletions
|
@ -3874,7 +3874,7 @@ NTSTATUS WINAPI LsarCreateTrustedDomainEx2(
|
||||||
|
|
||||||
/* Function 60 */
|
/* Function 60 */
|
||||||
NTSTATUS WINAPI CredrWrite(
|
NTSTATUS WINAPI CredrWrite(
|
||||||
handle_t hBinding)
|
PLSAPR_SERVER_NAME SystemName)
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED;
|
UNIMPLEMENTED;
|
||||||
return STATUS_NOT_IMPLEMENTED;
|
return STATUS_NOT_IMPLEMENTED;
|
||||||
|
@ -3883,7 +3883,7 @@ NTSTATUS WINAPI CredrWrite(
|
||||||
|
|
||||||
/* Function 61 */
|
/* Function 61 */
|
||||||
NTSTATUS WINAPI CredrRead(
|
NTSTATUS WINAPI CredrRead(
|
||||||
handle_t hBinding)
|
PLSAPR_SERVER_NAME SystemName)
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED;
|
UNIMPLEMENTED;
|
||||||
return STATUS_NOT_IMPLEMENTED;
|
return STATUS_NOT_IMPLEMENTED;
|
||||||
|
@ -3892,7 +3892,7 @@ NTSTATUS WINAPI CredrRead(
|
||||||
|
|
||||||
/* Function 62 */
|
/* Function 62 */
|
||||||
NTSTATUS WINAPI CredrEnumerate(
|
NTSTATUS WINAPI CredrEnumerate(
|
||||||
handle_t hBinding)
|
PLSAPR_SERVER_NAME SystemName)
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED;
|
UNIMPLEMENTED;
|
||||||
return STATUS_NOT_IMPLEMENTED;
|
return STATUS_NOT_IMPLEMENTED;
|
||||||
|
@ -3901,7 +3901,7 @@ NTSTATUS WINAPI CredrEnumerate(
|
||||||
|
|
||||||
/* Function 63 */
|
/* Function 63 */
|
||||||
NTSTATUS WINAPI CredrWriteDomainCredentials(
|
NTSTATUS WINAPI CredrWriteDomainCredentials(
|
||||||
handle_t hBinding)
|
PLSAPR_SERVER_NAME SystemName)
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED;
|
UNIMPLEMENTED;
|
||||||
return STATUS_NOT_IMPLEMENTED;
|
return STATUS_NOT_IMPLEMENTED;
|
||||||
|
@ -3910,7 +3910,7 @@ NTSTATUS WINAPI CredrWriteDomainCredentials(
|
||||||
|
|
||||||
/* Function 64 */
|
/* Function 64 */
|
||||||
NTSTATUS WINAPI CredrReadDomainCredentials(
|
NTSTATUS WINAPI CredrReadDomainCredentials(
|
||||||
handle_t hBinding)
|
PLSAPR_SERVER_NAME SystemName)
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED;
|
UNIMPLEMENTED;
|
||||||
return STATUS_NOT_IMPLEMENTED;
|
return STATUS_NOT_IMPLEMENTED;
|
||||||
|
@ -3921,7 +3921,7 @@ NTSTATUS WINAPI CredrReadDomainCredentials(
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
WINAPI
|
WINAPI
|
||||||
CredrDelete(
|
CredrDelete(
|
||||||
handle_t hBinding,
|
PLSAPR_SERVER_NAME SystemName,
|
||||||
LPWSTR TargetName,
|
LPWSTR TargetName,
|
||||||
DWORD Type,
|
DWORD Type,
|
||||||
DWORD Flags)
|
DWORD Flags)
|
||||||
|
@ -3935,7 +3935,7 @@ CredrDelete(
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
WINAPI
|
WINAPI
|
||||||
CredrGetTargetInfo(
|
CredrGetTargetInfo(
|
||||||
handle_t hBinding,
|
PLSAPR_SERVER_NAME SystemName,
|
||||||
LPWSTR TargetName,
|
LPWSTR TargetName,
|
||||||
DWORD Flags,
|
DWORD Flags,
|
||||||
CREDPR_TARGET_INFORMATION *TargetInformation)
|
CREDPR_TARGET_INFORMATION *TargetInformation)
|
||||||
|
@ -3949,7 +3949,7 @@ CredrGetTargetInfo(
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
WINAPI
|
WINAPI
|
||||||
CredrProfileLoaded(
|
CredrProfileLoaded(
|
||||||
handle_t hBinding)
|
PLSAPR_SERVER_NAME SystemName)
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED;
|
UNIMPLEMENTED;
|
||||||
return STATUS_NOT_IMPLEMENTED;
|
return STATUS_NOT_IMPLEMENTED;
|
||||||
|
@ -3998,7 +3998,7 @@ NTSTATUS WINAPI LsarLookupNames3(
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
WINAPI
|
WINAPI
|
||||||
CredrGetSessionTypes(
|
CredrGetSessionTypes(
|
||||||
handle_t hBinding,
|
PLSAPR_SERVER_NAME SystemName,
|
||||||
DWORD MaximumPersistCount,
|
DWORD MaximumPersistCount,
|
||||||
DWORD *MaximumPersist)
|
DWORD *MaximumPersist)
|
||||||
{
|
{
|
||||||
|
@ -4064,7 +4064,7 @@ NTSTATUS WINAPI LsarSetForestTrustInformation(
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
WINAPI
|
WINAPI
|
||||||
CredrRename(
|
CredrRename(
|
||||||
handle_t hBinding,
|
PLSAPR_SERVER_NAME SystemName,
|
||||||
LPWSTR OldTargetName,
|
LPWSTR OldTargetName,
|
||||||
LPWSTR NewTargetName,
|
LPWSTR NewTargetName,
|
||||||
DWORD Type,
|
DWORD Type,
|
||||||
|
|
|
@ -1126,55 +1126,55 @@ cpp_quote("#if _WIN32_WINNT >= 0x0501")
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
__stdcall
|
__stdcall
|
||||||
CredrWrite(
|
CredrWrite(
|
||||||
[in] handle_t hBinding); /* FIXME */
|
[in, unique] PLSAPR_SERVER_NAME SystemName); /* FIXME */
|
||||||
|
|
||||||
/* Function 61 */
|
/* Function 61 */
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
__stdcall
|
__stdcall
|
||||||
CredrRead(
|
CredrRead(
|
||||||
[in] handle_t hBinding); /* FIXME */
|
[in, unique] PLSAPR_SERVER_NAME SystemName); /* FIXME */
|
||||||
|
|
||||||
/* Function 62 */
|
/* Function 62 */
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
__stdcall
|
__stdcall
|
||||||
CredrEnumerate(
|
CredrEnumerate(
|
||||||
[in] handle_t hBinding); /* FIXME */
|
[in, unique] PLSAPR_SERVER_NAME SystemName); /* FIXME */
|
||||||
|
|
||||||
/* Function 63 */
|
/* Function 63 */
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
__stdcall
|
__stdcall
|
||||||
CredrWriteDomainCredentials(
|
CredrWriteDomainCredentials(
|
||||||
[in] handle_t hBinding); /* FIXME */
|
[in, unique] PLSAPR_SERVER_NAME SystemName); /* FIXME */
|
||||||
|
|
||||||
/* Function 64 */
|
/* Function 64 */
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
__stdcall
|
__stdcall
|
||||||
CredrReadDomainCredentials(
|
CredrReadDomainCredentials(
|
||||||
[in] handle_t hBinding); /* FIXME */
|
[in, unique] PLSAPR_SERVER_NAME SystemName); /* FIXME */
|
||||||
|
|
||||||
/* Function 65 */
|
/* Function 65 */
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
__stdcall
|
__stdcall
|
||||||
CredrDelete(
|
CredrDelete(
|
||||||
[in] handle_t hBinding,
|
[in, unique] PLSAPR_SERVER_NAME SystemName,
|
||||||
[in, unique, string] LPWSTR TargetName,
|
[in, unique, string] LPWSTR TargetName,
|
||||||
[in] DWORD Type,
|
[in] DWORD Type,
|
||||||
[in] DWORD Flags); /* FIXME */
|
[in] DWORD Flags);
|
||||||
|
|
||||||
/* Function 66 */
|
/* Function 66 */
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
__stdcall
|
__stdcall
|
||||||
CredrGetTargetInfo(
|
CredrGetTargetInfo(
|
||||||
[in] handle_t hBinding,
|
[in, unique] PLSAPR_SERVER_NAME SystemName,
|
||||||
[in, unique, string] LPWSTR TargetName,
|
[in, unique, string] LPWSTR TargetName,
|
||||||
[in] DWORD Flags,
|
[in] DWORD Flags,
|
||||||
[out] CREDPR_TARGET_INFORMATION *TargetInformation); /* FIXME */
|
[out] CREDPR_TARGET_INFORMATION *TargetInformation);
|
||||||
|
|
||||||
/* Function 67 */
|
/* Function 67 */
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
__stdcall
|
__stdcall
|
||||||
CredrProfileLoaded(
|
CredrProfileLoaded(
|
||||||
[in] handle_t hBinding); /* FIXME */
|
[in, unique] PLSAPR_SERVER_NAME SystemName);
|
||||||
|
|
||||||
/* Function 68 */
|
/* Function 68 */
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
|
@ -1194,9 +1194,9 @@ cpp_quote("#if _WIN32_WINNT >= 0x0501")
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
__stdcall
|
__stdcall
|
||||||
CredrGetSessionTypes(
|
CredrGetSessionTypes(
|
||||||
[in] handle_t hBinding,
|
[in, unique] PLSAPR_SERVER_NAME SystemName,
|
||||||
[in] DWORD MaximumPersistCount,
|
[in] DWORD MaximumPersistCount,
|
||||||
[out, size_is(MaximumPersistCount)] DWORD *MaximumPersist); /* FIXME */
|
[out, size_is(MaximumPersistCount)] DWORD *MaximumPersist);
|
||||||
|
|
||||||
/* Function 70 */
|
/* Function 70 */
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
|
@ -1240,11 +1240,11 @@ cpp_quote("#if _WIN32_WINNT >= 0x0501")
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
__stdcall
|
__stdcall
|
||||||
CredrRename(
|
CredrRename(
|
||||||
[in] handle_t hBinding,
|
[in, unique] PLSAPR_SERVER_NAME SystemName,
|
||||||
[in, unique, string] LPWSTR OldTargetName,
|
[in, unique, string] LPWSTR OldTargetName,
|
||||||
[in, unique, string] LPWSTR NewTargetName,
|
[in, unique, string] LPWSTR NewTargetName,
|
||||||
[in] DWORD Type,
|
[in] DWORD Type,
|
||||||
[in] DWORD Flags); /* FIXME */
|
[in] DWORD Flags);
|
||||||
|
|
||||||
/* Function 76 */
|
/* Function 76 */
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
|
|
Loading…
Reference in a new issue