Portability fixes.
[wine.git] / dlls / msvideo / msvideo_private.h
blobfe163755056d10d73949320aad97645f9425693d
1 /*
2 * Copyright 1999 Marcus Meissner
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.
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.
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 #ifndef __WINE_MSVIDEO_PRIVATE_H
20 #define __WINE_MSVIDEO_PRIVATE_H
22 #define COM_NO_WINDOWS_H
23 #include "winbase.h"
24 #include "windef.h"
25 #include "commdlg.h"
26 #include "vfw.h"
28 /* HIC struct (same layout as Win95 one) */
29 typedef struct tagWINE_HIC {
30 DWORD magic; /* 00: 'Smag' */
31 HANDLE curthread; /* 04: */
32 DWORD type; /* 08: */
33 DWORD handler; /* 0C: */
34 HDRVR hdrv; /* 10: */
35 DWORD private; /* 14:(handled by SendDriverMessage)*/
36 DRIVERPROC driverproc; /* 18:(handled by SendDriverMessage)*/
37 DWORD x1; /* 1c: name? */
38 WORD x2; /* 20: */
39 DWORD x3; /* 22: */
40 /* 26: */
41 DWORD driverproc16; /* Wine specific flags */
42 HIC hic;
43 DWORD driverId;
44 struct tagWINE_HIC* next;
45 } WINE_HIC;
47 HIC MSVIDEO_OpenFunction(DWORD, DWORD, UINT, DRIVERPROC, DWORD);
48 LRESULT MSVIDEO_SendMessage(WINE_HIC*, UINT, DWORD, DWORD);
49 WINE_HIC* MSVIDEO_GetHicPtr(HIC);
51 extern LRESULT (CALLBACK *pFnCallTo16)(HDRVR, HIC, UINT, LPARAM, LPARAM);
53 /* handle16 --> handle conversions */
54 #define HDRAWDIB_32(h16) ((HDRAWDIB)(ULONG_PTR)(h16))
55 #define HIC_32(h16) ((HIC)(ULONG_PTR)(h16))
57 /* handle --> handle16 conversions */
58 #define HDRVR_16(h32) (LOWORD(h32))
59 #define HDRAWDIB_16(h32) (LOWORD(h32))
60 #define HIC_16(h32) (LOWORD(h32))
62 #endif /* __WINE_MSVIDEO_PRIVATE_H */