Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ NCryptGetIntProperty() [2/2]

static unsafe ErrorCode Interop.NCrypt.NCryptGetIntProperty ( SafeNCryptHandle hObject,
string pszProperty,
ref int result )
inlinestaticpackage

Definition at line 831 of file Interop.cs.

832 {
833 fixed (int* pbOutput = &result)
834 {
835 int pcbResult;
836 return NCryptGetProperty(hObject, pszProperty, pbOutput, 4, out pcbResult, CngPropertyOptions.None);
837 }
838 }
static unsafe ErrorCode NCryptGetProperty(SafeNCryptHandle hObject, string pszProperty, [Out] void *pbOutput, int cbOutput, out int pcbResult, CngPropertyOptions dwFlags)

References Interop.NCrypt.NCryptGetProperty().