summaryrefslogtreecommitdiff
path: root/AVStream/avscamera/sys/VideoCapture.h
diff options
context:
space:
mode:
Diffstat (limited to 'AVStream/avscamera/sys/VideoCapture.h')
-rw-r--r--AVStream/avscamera/sys/VideoCapture.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/AVStream/avscamera/sys/VideoCapture.h b/AVStream/avscamera/sys/VideoCapture.h
new file mode 100644
index 00000000..da08b0a8
--- /dev/null
+++ b/AVStream/avscamera/sys/VideoCapture.h
@@ -0,0 +1,34 @@
+/**************************************************************************
+
+ A/V Stream Camera Sample
+
+ Copyright (c) 2001, Microsoft Corporation.
+
+ File:
+
+ videocapture.h
+
+ Abstract:
+
+ Video Capture Pin definition.
+
+ CVideoCapturePin derived from CCapturePin.
+
+ History:
+
+ created 3/8/2001
+
+**************************************************************************/
+
+#pragma once
+
+#include "capture.h"
+
+class CVideoCapturePin : public CCapturePin
+{
+public:
+ static NTSTATUS DispatchCreate (IN PKSPIN Pin, IN PIRP Irp);
+
+private:
+ CVideoCapturePin(IN PKSPIN Pin);
+};