We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Definition
NTSTATUS LsaRegisterLogonProcess( [in] PLSA_STRING LogonProcessName, [out] PHANDLE LsaHandle, [out] PLSA_OPERATIONAL_MODE SecurityMode );
Winmd
[DllImport("SECUR32.dll", ExactSpelling = true, PreserveSig = false)] [SupportedOSPlatform("windows5.1.2600")] [Documentation("https://learn.microsoft.com/windows/win32/api/ntsecapi/nf-ntsecapi-lsaregisterlogonprocess")] public unsafe static extern NTSTATUS LsaRegisterLogonProcess([In] LSA_STRING* LogonProcessName, [Out] HANDLE* LsaHandle, [Out] uint* SecurityMode);
Docs
[out] SecurityMode The value returned is not meaningful and should be ignored. https://learn.microsoft.com/windows/win32/api/ntsecapi/nf-ntsecapi-lsaregisterlogonprocess
The text was updated successfully, but these errors were encountered:
3df21f8
Thanks @mikebattista!
Sorry, something went wrong.
@mikebattista I misread and this isn't reserved. :(
The docs just simply want you to ignore what the API puts there. If this is set to NULL, you receive RPC_NT_NULL_REF_POINTER.
RPC_NT_NULL_REF_POINTER
Revert "LsaRegisterLogonProcess SecurityMode parameter missing reserv…
61dde08
…ed bit. Fixed #1735." This reverts commit 3df21f8.
mikebattista
No branches or pull requests
Definition
NTSTATUS LsaRegisterLogonProcess( [in] PLSA_STRING LogonProcessName, [out] PHANDLE LsaHandle, [out] PLSA_OPERATIONAL_MODE SecurityMode );
Winmd
Docs
The text was updated successfully, but these errors were encountered: