summaryrefslogtreecommitdiff
path: root/avstream/avscamera/sys/imagecapture.h
blob: 1e11c31ac36e0829a2d8a32b67b15446bcf9127b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/**************************************************************************

    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
    );
};