summaryrefslogtreecommitdiff
path: root/avscamera/sys/imagecapture.h
diff options
context:
space:
mode:
Diffstat (limited to 'avscamera/sys/imagecapture.h')
-rw-r--r--avscamera/sys/imagecapture.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/avscamera/sys/imagecapture.h b/avscamera/sys/imagecapture.h
deleted file mode 100644
index 1e11c31a..00000000
--- a/avscamera/sys/imagecapture.h
+++ /dev/null
@@ -1,44 +0,0 @@
-/**************************************************************************
-
- A/V Stream Camera Sample
-
- Copyright (c) 2001, Microsoft Corporation.
-
- File:
-
- imagecapture.h
-
- Abstract:
-
- Image Capture Pin - A specialization of a capture pin.
-
- CImageCapturePin defines a unique list of data ranges for the image
- pin.
-
- History:
-
- created 3/8/2001
-
-**************************************************************************/
-#pragma once
-
-#include "capture.h"
-
-class CImageCapturePin : public CCapturePin
-{
-public:
- static NTSTATUS DispatchCreate(
- _In_ PKSPIN Pin,
- _In_ PIRP Irp
- );
-
-private:
- virtual
- NTSTATUS Close(
- _In_ PIRP Irp
- );
-
- CImageCapturePin(
- _In_ PKSPIN Pin
- );
-};