summaryrefslogtreecommitdiff
path: root/biometrics/adapters/sensor_adapter/SensorAdapter.h
diff options
context:
space:
mode:
authorJakobL-MSFT <[email protected]>2024-02-14 11:52:37 -0800
committerGitHub <[email protected]>2024-02-14 11:52:37 -0800
commitc73af47e04261d66a3365c4eee64b2295f2b9d53 (patch)
tree83942209c151d3ffb6b7a6789aaa1f69e13af28a /biometrics/adapters/sensor_adapter/SensorAdapter.h
parentae395fa7d01465fa82eb37a8d19084366aa7599b (diff)
Delete biometrics sample (#1111)
Diffstat (limited to 'biometrics/adapters/sensor_adapter/SensorAdapter.h')
-rw-r--r--biometrics/adapters/sensor_adapter/SensorAdapter.h68
1 files changed, 0 insertions, 68 deletions
diff --git a/biometrics/adapters/sensor_adapter/SensorAdapter.h b/biometrics/adapters/sensor_adapter/SensorAdapter.h
deleted file mode 100644
index f70c3f51..00000000
--- a/biometrics/adapters/sensor_adapter/SensorAdapter.h
+++ /dev/null
@@ -1,68 +0,0 @@
-/*++
-
- THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
- ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
- THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
- PARTICULAR PURPOSE.
-
- Copyright (c) Microsoft Corporation. All rights reserved
-
-Module Name:
-
- SensorAdapter.h
-
-Abstract:
-
- This module contains a stub implementation of an Sensor Adapter
- plug-in for the Windows Biometric service.
-
-Author:
-
- -
-
-Environment:
-
- Win32, user mode only.
-
-Revision History:
-
-NOTES:
-
- (None)
-
---*/
-#pragma once
-
-#include "winbio_adapter.h"
-
-///////////////////////////////////////////////////////////////////////////////
-//
-// The WINIBIO_SENSOR_CONTEXT structure is privately-defined by each
-// Sensor Adapter. Its purpose is to maintain any information that
-// should persist across Sensor Adapter API calls.
-//
-// The Adapter allocates and initializes one of these structures in its
-// 'Attach' routine and saves its address in the Pipeline->SensorContext
-// field.
-//
-// The Sensor Adapter's 'Detach' routine cleans up and deallocates the
-// structure and sets the PipelineContext->SensorContext field to NULL.
-//
-///////////////////////////////////////////////////////////////////////////////
-typedef struct _WINIBIO_SENSOR_CONTEXT {
- //
- // The following fields illustrate the kind of information
- // the Sensor Adapter needs to keep in this structure:
- //
- // SampleBuffer - A pointer to the most-recently-captured
- // data sample from the sensor device.
- //
- // SampleSize - Count of the number of bytes in the
- // sample buffer.
- //
- PWINBIO_BIR SampleBuffer;
- SIZE_T SampleSize;
-
-} WINIBIO_SENSOR_CONTEXT, *PWINIBIO_SENSOR_CONTEXT;
-
-