-
Notifications
You must be signed in to change notification settings - Fork 4
/
DirectEncodeVB.h
52 lines (39 loc) · 1.55 KB
/
DirectEncodeVB.h
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
45
46
47
48
49
50
51
52
/** This file is part of The Standard Mpeg Encoder.
The Standard Mpeg Encoder is free software: you can redistribute it
and/or modify it under the terms of the GNU General Public License
as published by the Free Software Foundation, either version 3 of
the License, or (at your option) any later version.
The Standard Mpeg Encoder is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with The Standard Mpeg Encoder.
If not, see <http://www.gnu.org/licenses/>.
**/
// DirectEncodeVB.h : Declaration of the CDirectEncodeVB
#ifndef __DIRECTENCODEVB_H_
#define __DIRECTENCODEVB_H_
#include "resource.h" // main symbols
/////////////////////////////////////////////////////////////////////////////
// CDirectEncodeVB
class ATL_NO_VTABLE CDirectEncodeVB :
public CComObjectRootEx<CComSingleThreadModel>,
public CComCoClass<CDirectEncodeVB, &CLSID_DirectEncodeVB>,
public IDispatchImpl<IDirectEncodeVB, &IID_IDirectEncodeVB, &LIBID_StandardMpegEncoderLib>
{
public:
CDirectEncodeVB()
{
}
DECLARE_REGISTRY_RESOURCEID(IDR_DIRECTENCODEVB)
DECLARE_PROTECT_FINAL_CONSTRUCT()
BEGIN_COM_MAP(CDirectEncodeVB)
COM_INTERFACE_ENTRY(IDirectEncodeVB)
COM_INTERFACE_ENTRY(IDispatch)
END_COM_MAP()
// IDirectEncodeVB
public:
STDMETHOD(PassThru)(/*[in]*/ long nVal);
};
#endif //__DIRECTENCODEVB_H_