1 
2 using System;
3 using Net.Sf.Pkcs11.Wrapper;
4 
5 namespace Net.Sf.Pkcs11.Delegates
6 {
7      [System.Runtime.InteropServices.UnmanagedFunctionPointerAttribute(System.Runtime.InteropServices.CallingConvention.Cdecl)]
C_GetOperationState( uint hSession, byte[] pOperationState, ref uint pulOperationStateLen )8 	internal delegate CKR C_GetOperationState(
9 		uint hSession,
10 		byte[] pOperationState,
11 		ref uint pulOperationStateLen
12 	);
13 }
14