Example #1
0
 static extern bool ftrScanIsFingerPresent( IntPtr ftrHandle, out _FTRSCAN_FRAME_PARAMETERS pFrameParameters );
Example #2
0
 static extern bool ftrScanIsFingerPresent(IntPtr ftrHandle, out _FTRSCAN_FRAME_PARAMETERS pFrameParameters);
Example #3
0
 public bool IsFinger( )
 {
         var t = new _FTRSCAN_FRAME_PARAMETERS();
         return ftrScanIsFingerPresent(device, out t);
 }
Example #4
0
        public bool IsFinger( )
        {
            var t = new _FTRSCAN_FRAME_PARAMETERS();

            return(ftrScanIsFingerPresent(device, out t));
        }