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

ERR_remove_state() private method

private ERR_remove_state ( uint pid ) : void
pid uint
return void
        public static extern void ERR_remove_state(uint pid);

Usage Example

Example #1
0
 /// <summary>
 /// Calls ERR_remove_state()
 /// </summary>
 /// <param name="value"></param>
 public static void RemoveState(uint value)
 {
     Native.ERR_remove_state(value);
 }
Native