2009-03-24 11:17:08 +00:00
|
|
|
/* DirectShow Editing Services (qedit.dll)
|
2008-04-17 13:45:02 +00:00
|
|
|
*
|
2009-03-24 11:17:08 +00:00
|
|
|
* Copyright 2008 Google (Lei Zhang)
|
|
|
|
*
|
2008-04-17 13:45:02 +00:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2009-03-24 11:17:08 +00:00
|
|
|
#ifndef __QEDIT_PRIVATE_INCLUDED__
|
|
|
|
#define __QEDIT_PRIVATE_INCLUDED__
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
2008-04-17 13:45:02 +00:00
|
|
|
|
2014-01-20 12:35:57 +00:00
|
|
|
#define COBJMACROS
|
|
|
|
|
2018-03-08 12:43:36 +00:00
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "wtypes.h"
|
|
|
|
#include "wingdi.h"
|
|
|
|
#include "winuser.h"
|
|
|
|
#include "dshow.h"
|
|
|
|
#include "qedit.h"
|
2013-12-22 16:59:08 +00:00
|
|
|
|
2016-07-02 15:52:21 +00:00
|
|
|
HRESULT AMTimeline_create(IUnknown *pUnkOuter, LPVOID *ppObj) DECLSPEC_HIDDEN;
|
2013-10-11 13:12:40 +00:00
|
|
|
HRESULT MediaDet_create(IUnknown *pUnkOuter, LPVOID *ppObj) DECLSPEC_HIDDEN;
|
|
|
|
HRESULT SampleGrabber_create(IUnknown *pUnkOuter, LPVOID *ppObj) DECLSPEC_HIDDEN;
|
2008-04-17 13:45:02 +00:00
|
|
|
|
2009-03-24 11:17:08 +00:00
|
|
|
#endif /* __QEDIT_PRIVATE_INCLUDED__ */
|