Sync with trunk r62754.
[reactos.git] / dll / win32 / msvfw32 / msvideo_private.h
1 /*
2 * Copyright 1999 Marcus Meissner
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17 */
18
19 #ifndef __WINE_MSVIDEO_PRIVATE_H
20 #define __WINE_MSVIDEO_PRIVATE_H
21
22 #include <stdarg.h>
23
24 #define WIN32_NO_STATUS
25 #define _INC_WINDOWS
26 #define COM_NO_WINDOWS_H
27
28 #include <windef.h>
29 #include <winbase.h>
30 #include <winnls.h>
31 #include <wingdi.h>
32 #include <vfw.h>
33
34 #include <wine/debug.h>
35
36 #define ICM_CHOOSE_COMPRESSOR 1
37 #define IDC_COMP_LIST 880
38
39 /* HIC struct (same layout as Win95 one) */
40 typedef struct tagWINE_HIC {
41 DWORD magic; /* 00: 'Smag' */
42 HANDLE curthread; /* 04: */
43 DWORD type; /* 08: */
44 DWORD handler; /* 0C: */
45 HDRVR hdrv; /* 10: */
46 DWORD private; /* 14:(handled by SendDriverMessage)*/
47 DRIVERPROC driverproc; /* 18:(handled by SendDriverMessage)*/
48 DWORD x1; /* 1c: name? */
49 WORD x2; /* 20: */
50 DWORD x3; /* 22: */
51 /* 26: */
52 HIC hic;
53 DWORD driverId;
54 struct tagWINE_HIC* next;
55 } WINE_HIC;
56
57 extern HMODULE MSVFW32_hModule DECLSPEC_HIDDEN;
58
59 #endif /* __WINE_MSVIDEO_PRIVATE_H */