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_GetMechanismInfo( uint slotID, CKM type, ref CK_MECHANISM_INFO pInfo )8 	internal delegate CKR C_GetMechanismInfo(
9 		uint slotID,
10 		CKM type,
11 		ref CK_MECHANISM_INFO pInfo
12 	);
13 }
14