From c73af47e04261d66a3365c4eee64b2295f2b9d53 Mon Sep 17 00:00:00 2001 From: JakobL-MSFT <110699333+JakobL-MSFT@users.noreply.github.com> Date: Wed, 14 Feb 2024 11:52:37 -0800 Subject: Delete biometrics sample (#1111) --- biometrics/driver/Driver.cpp | 77 -------------------------------------------- 1 file changed, 77 deletions(-) delete mode 100644 biometrics/driver/Driver.cpp (limited to 'biometrics/driver/Driver.cpp') diff --git a/biometrics/driver/Driver.cpp b/biometrics/driver/Driver.cpp deleted file mode 100644 index 0d5c0797..00000000 --- a/biometrics/driver/Driver.cpp +++ /dev/null @@ -1,77 +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: - - Driver.cpp - -Abstract: - - This module contains the implementation of the Biometric - core driver callback object. - -Environment: - - Windows User-Mode Driver Framework (WUDF) - ---*/ - -#include "internal.h" -#include "driver.tmh" - -HRESULT -CBiometricDriver::OnDeviceAdd( - _In_ IWDFDriver *FxWdfDriver, - _In_ IWDFDeviceInitialize *FxDeviceInit - ) -/*++ - - Routine Description: - - The FX invokes this method when it wants to install our driver on a device - stack. This method creates a device callback object, then calls the Fx - to create an Fx device object and associate the new callback object with - it. - - Arguments: - - FxWdfDriver - the Fx driver object. - - FxDeviceInit - the initialization information for the device. - - Return Value: - - status - ---*/ -{ - HRESULT hr = S_OK; - CBiometricDevice *device = NULL; - - // - // Create device callback object - // - - hr = CBiometricDevice::CreateInstanceAndInitialize(FxWdfDriver, - FxDeviceInit, - &device); - - // - // Call the device's construct method. This - // allows the device to create any queues or other structures that it - // needs now that the corresponding fx device object has been created. - // - - if (SUCCEEDED(hr)) - { - hr = device->Configure(); - } - - return hr; -} -- cgit v1.3.1