mciqtz_private.h 1.52 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*
 * DirectShow MCI Driver
 *
 * Copyright 2009 Christian Costa
 *
 * 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
 */

#ifndef __WINE_PRIVATE_MCIQTZ_H
#define __WINE_PRIVATE_MCIQTZ_H

24 25 26 27
#define COBJMACROS

#include "dshow.h"

28
typedef struct {
29
    MCIDEVICEID    wDevID;
30
    BOOL           opened;
31
    BOOL           uninit;
32 33
    IGraphBuilder* pgraph;
    IMediaControl* pmctrl;
34
    IMediaSeeking* seek;
35
    IMediaEvent*   mevent;
36 37
    IVideoWindow*  vidwin;
    IBasicVideo*   vidbasic;
38
    IBasicAudio*   audio;
39
    DWORD          time_format;
40 41 42
    DWORD          mci_flags;
    REFERENCE_TIME seek_start;
    REFERENCE_TIME seek_stop;
43
    UINT           command_table;
44 45 46 47 48
    HWND           parent;
    MCIDEVICEID    notify_devid;
    HANDLE         callback;
    HANDLE         thread;
    HANDLE         stop_event;
49 50 51
} WINE_MCIQTZ;

#endif  /* __WINE_PRIVATE_MCIQTZ_H */