CredRead function advapi32
The CredRead function reads a credential from the user's credential set. The credential set used is the one associated with the logon session of the current token. The token must not have the user's SID disabled.
BOOL CredReadW(
LPCWSTR TargetName,
DWORD Type,
DWORD Flags,
PCREDENTIALW *Credential
);
Implementation
int CredRead(Pointer<Utf16> TargetName, int Type, int Flags,
Pointer<Pointer<CREDENTIAL>> Credential) =>
_CredRead(TargetName, Type, Flags, Credential);