OpenSSL.Core.Native.CRYPTO_add_lock C# (CSharp) Method

CRYPTO_add_lock() private method

private CRYPTO_add_lock ( IntPtr ptr, int amount, CryptoLockTypes type, string file, int line ) : int
ptr System.IntPtr
amount int
type CryptoLockTypes
file string
line int
return int
        public static extern int CRYPTO_add_lock(IntPtr ptr, int amount, CryptoLockTypes type, string file, int line);

Usage Example

Example #1
0
 internal override void AddRef()
 {
     Native.CRYPTO_add_lock(refPtr, 1, LockType, "Base.cs", 0);
 }
All Usage Examples Of OpenSSL.Core.Native::CRYPTO_add_lock
Native