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
31 /* HIC struct (same layout as Win95 one) */
32 typedef struct tagWINE_HIC
{
33 DWORD magic
; /* 00: 'Smag' */
34 HANDLE curthread
; /* 04: */
36 DWORD handler
; /* 0C: */
38 DWORD
private; /* 14:(handled by SendDriverMessage)*/
39 DRIVERPROC driverproc
; /* 18:(handled by SendDriverMessage)*/
40 DWORD x1
; /* 1c: name? */
44 DWORD driverproc16
; /* Wine specific flags */
47 struct tagWINE_HIC
* next
;
50 HIC
MSVIDEO_OpenFunction(DWORD
, DWORD
, UINT
, DRIVERPROC
, DWORD
);
51 LRESULT
MSVIDEO_SendMessage(WINE_HIC
*, UINT
, DWORD
, DWORD
);
52 WINE_HIC
* MSVIDEO_GetHicPtr(HIC
);
54 extern LRESULT (CALLBACK
*pFnCallTo16
)(HDRVR
, HIC
, UINT
, LPARAM
, LPARAM
);
56 /* handle16 --> handle conversions */
57 #define HDRAWDIB_32(h16) ((HDRAWDIB)(ULONG_PTR)(h16))
58 #define HIC_32(h16) ((HIC)(ULONG_PTR)(h16))
60 /* handle --> handle16 conversions */
61 #define HDRVR_16(h32) (LOWORD(h32))
62 #define HDRAWDIB_16(h32) (LOWORD(h32))
63 #define HIC_16(h32) (LOWORD(h32))
65 #endif /* __WINE_MSVIDEO_PRIVATE_H */