Made the include files self sufficient.
This commit is contained in:
parent
fcfacb95a7
commit
bbaf0ea799
|
@ -306,7 +306,7 @@ static void _dump_DIPROPHEADER(DIPROPHEADER *diph) {
|
||||||
((diph->dwHow == DIPH_BYID)) ? "DIPH_BYID" : "unknown")));
|
((diph->dwHow == DIPH_BYID)) ? "DIPH_BYID" : "unknown")));
|
||||||
}
|
}
|
||||||
|
|
||||||
static void _dump_OBJECTINSTANCE(DIDEVICEOBJECTINSTANCE *ddoi) {
|
static void _dump_OBJECTINSTANCEA(DIDEVICEOBJECTINSTANCEA *ddoi) {
|
||||||
if (TRACE_ON(dinput)) {
|
if (TRACE_ON(dinput)) {
|
||||||
DPRINTF(" - enumerating : 0x%08lx - %2ld - 0x%08lx - %s\n",
|
DPRINTF(" - enumerating : 0x%08lx - %2ld - 0x%08lx - %s\n",
|
||||||
ddoi->guidType.Data1, ddoi->dwOfs, ddoi->dwType, ddoi->tszName);
|
ddoi->guidType.Data1, ddoi->dwOfs, ddoi->dwType, ddoi->tszName);
|
||||||
|
@ -1708,7 +1708,7 @@ static HRESULT WINAPI SysMouseAImpl_EnumObjects(
|
||||||
DWORD dwFlags)
|
DWORD dwFlags)
|
||||||
{
|
{
|
||||||
ICOM_THIS(SysMouseAImpl,iface);
|
ICOM_THIS(SysMouseAImpl,iface);
|
||||||
DIDEVICEOBJECTINSTANCE ddoi;
|
DIDEVICEOBJECTINSTANCEA ddoi;
|
||||||
|
|
||||||
TRACE("(this=%p,%p,%p,%08lx)\n", This, lpCallback, lpvRef, dwFlags);
|
TRACE("(this=%p,%p,%p,%08lx)\n", This, lpCallback, lpvRef, dwFlags);
|
||||||
if (TRACE_ON(dinput)) {
|
if (TRACE_ON(dinput)) {
|
||||||
|
@ -1718,7 +1718,7 @@ static HRESULT WINAPI SysMouseAImpl_EnumObjects(
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Only the fields till dwFFMaxForce are relevant */
|
/* Only the fields till dwFFMaxForce are relevant */
|
||||||
ddoi.dwSize = FIELD_OFFSET(DIDEVICEOBJECTINSTANCE, dwFFMaxForce);
|
ddoi.dwSize = FIELD_OFFSET(DIDEVICEOBJECTINSTANCEA, dwFFMaxForce);
|
||||||
|
|
||||||
/* In a mouse, we have : two relative axis and three buttons */
|
/* In a mouse, we have : two relative axis and three buttons */
|
||||||
if ((dwFlags == DIDFT_ALL) ||
|
if ((dwFlags == DIDFT_ALL) ||
|
||||||
|
@ -1728,7 +1728,7 @@ static HRESULT WINAPI SysMouseAImpl_EnumObjects(
|
||||||
ddoi.dwOfs = This->offset_array[WINE_MOUSE_X_POSITION];
|
ddoi.dwOfs = This->offset_array[WINE_MOUSE_X_POSITION];
|
||||||
ddoi.dwType = DIDFT_MAKEINSTANCE(WINE_MOUSE_X_AXIS_INSTANCE) | DIDFT_RELAXIS;
|
ddoi.dwType = DIDFT_MAKEINSTANCE(WINE_MOUSE_X_AXIS_INSTANCE) | DIDFT_RELAXIS;
|
||||||
strcpy(ddoi.tszName, "X-Axis");
|
strcpy(ddoi.tszName, "X-Axis");
|
||||||
_dump_OBJECTINSTANCE(&ddoi);
|
_dump_OBJECTINSTANCEA(&ddoi);
|
||||||
if (lpCallback(&ddoi, lpvRef) != DIENUM_CONTINUE) return DI_OK;
|
if (lpCallback(&ddoi, lpvRef) != DIENUM_CONTINUE) return DI_OK;
|
||||||
|
|
||||||
/* Y axis */
|
/* Y axis */
|
||||||
|
@ -1736,7 +1736,7 @@ static HRESULT WINAPI SysMouseAImpl_EnumObjects(
|
||||||
ddoi.dwOfs = This->offset_array[WINE_MOUSE_Y_POSITION];
|
ddoi.dwOfs = This->offset_array[WINE_MOUSE_Y_POSITION];
|
||||||
ddoi.dwType = DIDFT_MAKEINSTANCE(WINE_MOUSE_Y_AXIS_INSTANCE) | DIDFT_RELAXIS;
|
ddoi.dwType = DIDFT_MAKEINSTANCE(WINE_MOUSE_Y_AXIS_INSTANCE) | DIDFT_RELAXIS;
|
||||||
strcpy(ddoi.tszName, "Y-Axis");
|
strcpy(ddoi.tszName, "Y-Axis");
|
||||||
_dump_OBJECTINSTANCE(&ddoi);
|
_dump_OBJECTINSTANCEA(&ddoi);
|
||||||
if (lpCallback(&ddoi, lpvRef) != DIENUM_CONTINUE) return DI_OK;
|
if (lpCallback(&ddoi, lpvRef) != DIENUM_CONTINUE) return DI_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1748,21 +1748,21 @@ static HRESULT WINAPI SysMouseAImpl_EnumObjects(
|
||||||
ddoi.dwOfs = This->offset_array[WINE_MOUSE_L_POSITION];
|
ddoi.dwOfs = This->offset_array[WINE_MOUSE_L_POSITION];
|
||||||
ddoi.dwType = DIDFT_MAKEINSTANCE(WINE_MOUSE_L_BUTTON_INSTANCE) | DIDFT_PSHBUTTON;
|
ddoi.dwType = DIDFT_MAKEINSTANCE(WINE_MOUSE_L_BUTTON_INSTANCE) | DIDFT_PSHBUTTON;
|
||||||
strcpy(ddoi.tszName, "Left-Button");
|
strcpy(ddoi.tszName, "Left-Button");
|
||||||
_dump_OBJECTINSTANCE(&ddoi);
|
_dump_OBJECTINSTANCEA(&ddoi);
|
||||||
if (lpCallback(&ddoi, lpvRef) != DIENUM_CONTINUE) return DI_OK;
|
if (lpCallback(&ddoi, lpvRef) != DIENUM_CONTINUE) return DI_OK;
|
||||||
|
|
||||||
/* Right button */
|
/* Right button */
|
||||||
ddoi.dwOfs = This->offset_array[WINE_MOUSE_R_POSITION];
|
ddoi.dwOfs = This->offset_array[WINE_MOUSE_R_POSITION];
|
||||||
ddoi.dwType = DIDFT_MAKEINSTANCE(WINE_MOUSE_R_BUTTON_INSTANCE) | DIDFT_PSHBUTTON;
|
ddoi.dwType = DIDFT_MAKEINSTANCE(WINE_MOUSE_R_BUTTON_INSTANCE) | DIDFT_PSHBUTTON;
|
||||||
strcpy(ddoi.tszName, "Right-Button");
|
strcpy(ddoi.tszName, "Right-Button");
|
||||||
_dump_OBJECTINSTANCE(&ddoi);
|
_dump_OBJECTINSTANCEA(&ddoi);
|
||||||
if (lpCallback(&ddoi, lpvRef) != DIENUM_CONTINUE) return DI_OK;
|
if (lpCallback(&ddoi, lpvRef) != DIENUM_CONTINUE) return DI_OK;
|
||||||
|
|
||||||
/* Middle button */
|
/* Middle button */
|
||||||
ddoi.dwOfs = This->offset_array[WINE_MOUSE_M_POSITION];
|
ddoi.dwOfs = This->offset_array[WINE_MOUSE_M_POSITION];
|
||||||
ddoi.dwType = DIDFT_MAKEINSTANCE(WINE_MOUSE_M_BUTTON_INSTANCE) | DIDFT_PSHBUTTON;
|
ddoi.dwType = DIDFT_MAKEINSTANCE(WINE_MOUSE_M_BUTTON_INSTANCE) | DIDFT_PSHBUTTON;
|
||||||
strcpy(ddoi.tszName, "Middle-Button");
|
strcpy(ddoi.tszName, "Middle-Button");
|
||||||
_dump_OBJECTINSTANCE(&ddoi);
|
_dump_OBJECTINSTANCEA(&ddoi);
|
||||||
if (lpCallback(&ddoi, lpvRef) != DIENUM_CONTINUE) return DI_OK;
|
if (lpCallback(&ddoi, lpvRef) != DIENUM_CONTINUE) return DI_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2048,7 +2048,7 @@ static HRESULT WINAPI JoystickAImpl_EnumObjects(
|
||||||
DWORD dwFlags)
|
DWORD dwFlags)
|
||||||
{
|
{
|
||||||
ICOM_THIS(JoystickAImpl,iface);
|
ICOM_THIS(JoystickAImpl,iface);
|
||||||
DIDEVICEOBJECTINSTANCE ddoi;
|
DIDEVICEOBJECTINSTANCEA ddoi;
|
||||||
int xfd = This->joyfd;
|
int xfd = This->joyfd;
|
||||||
|
|
||||||
TRACE("(this=%p,%p,%p,%08lx)\n", This, lpCallback, lpvRef, dwFlags);
|
TRACE("(this=%p,%p,%p,%08lx)\n", This, lpCallback, lpvRef, dwFlags);
|
||||||
|
@ -2059,7 +2059,7 @@ static HRESULT WINAPI JoystickAImpl_EnumObjects(
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Only the fields till dwFFMaxForce are relevant */
|
/* Only the fields till dwFFMaxForce are relevant */
|
||||||
ddoi.dwSize = FIELD_OFFSET(DIDEVICEOBJECTINSTANCE, dwFFMaxForce);
|
ddoi.dwSize = FIELD_OFFSET(DIDEVICEOBJECTINSTANCEA, dwFFMaxForce);
|
||||||
|
|
||||||
/* For the joystick, do as is done in the GetCapabilities function */
|
/* For the joystick, do as is done in the GetCapabilities function */
|
||||||
if ((dwFlags == DIDFT_ALL) ||
|
if ((dwFlags == DIDFT_ALL) ||
|
||||||
|
@ -2091,7 +2091,7 @@ static HRESULT WINAPI JoystickAImpl_EnumObjects(
|
||||||
}
|
}
|
||||||
ddoi.dwType = DIDFT_MAKEINSTANCE((0x0001 << i) << WINE_JOYSTICK_AXIS_BASE) | DIDFT_ABSAXIS;
|
ddoi.dwType = DIDFT_MAKEINSTANCE((0x0001 << i) << WINE_JOYSTICK_AXIS_BASE) | DIDFT_ABSAXIS;
|
||||||
sprintf(ddoi.tszName, "%d-Axis", i);
|
sprintf(ddoi.tszName, "%d-Axis", i);
|
||||||
_dump_OBJECTINSTANCE(&ddoi);
|
_dump_OBJECTINSTANCEA(&ddoi);
|
||||||
if (lpCallback(&ddoi, lpvRef) != DIENUM_CONTINUE) return DI_OK;
|
if (lpCallback(&ddoi, lpvRef) != DIENUM_CONTINUE) return DI_OK;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2112,7 +2112,7 @@ static HRESULT WINAPI JoystickAImpl_EnumObjects(
|
||||||
ddoi.dwOfs = DIJOFS_BUTTON(i);
|
ddoi.dwOfs = DIJOFS_BUTTON(i);
|
||||||
ddoi.dwType = DIDFT_MAKEINSTANCE((0x0001 << i) << WINE_JOYSTICK_BUTTON_BASE) | DIDFT_PSHBUTTON;
|
ddoi.dwType = DIDFT_MAKEINSTANCE((0x0001 << i) << WINE_JOYSTICK_BUTTON_BASE) | DIDFT_PSHBUTTON;
|
||||||
sprintf(ddoi.tszName, "%d-Button", i);
|
sprintf(ddoi.tszName, "%d-Button", i);
|
||||||
_dump_OBJECTINSTANCE(&ddoi);
|
_dump_OBJECTINSTANCEA(&ddoi);
|
||||||
if (lpCallback(&ddoi, lpvRef) != DIENUM_CONTINUE) return DI_OK;
|
if (lpCallback(&ddoi, lpvRef) != DIENUM_CONTINUE) return DI_OK;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,13 +6,15 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#include "windef.h"
|
||||||
|
#include "wingdi.h"
|
||||||
|
#include "wine/wingdi16.h"
|
||||||
#include "miscemu.h"
|
#include "miscemu.h"
|
||||||
#include "dispdib.h"
|
#include "dispdib.h"
|
||||||
#include "vga.h"
|
#include "vga.h"
|
||||||
#include "debugtools.h"
|
#include "debugtools.h"
|
||||||
#include "wine/wingdi16.h"
|
|
||||||
|
|
||||||
DEFAULT_DEBUG_CHANNEL(ddraw)
|
DEFAULT_DEBUG_CHANNEL(ddraw);
|
||||||
|
|
||||||
static int dispdib_multi = 0;
|
static int dispdib_multi = 0;
|
||||||
|
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
#define __WINE_ANIMATE_H
|
#define __WINE_ANIMATE_H
|
||||||
|
|
||||||
#include "windef.h"
|
#include "windef.h"
|
||||||
|
#include "winbase.h"
|
||||||
#include "vfw.h"
|
#include "vfw.h"
|
||||||
|
|
||||||
typedef struct tagANIMATE_INFO
|
typedef struct tagANIMATE_INFO
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
#ifndef __WINE_BUTTON_H
|
#ifndef __WINE_BUTTON_H
|
||||||
#define __WINE_BUTTON_H
|
#define __WINE_BUTTON_H
|
||||||
|
|
||||||
|
#include "windef.h"
|
||||||
#include "wingdi.h"
|
#include "wingdi.h"
|
||||||
|
|
||||||
/* Extra info for BUTTON windows */
|
/* Extra info for BUTTON windows */
|
||||||
|
|
|
@ -41,6 +41,18 @@ LPWSTR __cdecl CRTDLL__wcsnset( LPWSTR str, WCHAR c, INT n );
|
||||||
LPWSTR __cdecl CRTDLL__wcsrev( LPWSTR str );
|
LPWSTR __cdecl CRTDLL__wcsrev( LPWSTR str );
|
||||||
LPWSTR __cdecl CRTDLL__wcsset( LPWSTR str, WCHAR c );
|
LPWSTR __cdecl CRTDLL__wcsset( LPWSTR str, WCHAR c );
|
||||||
LPWSTR __cdecl CRTDLL__wcsupr( LPWSTR str );
|
LPWSTR __cdecl CRTDLL__wcsupr( LPWSTR str );
|
||||||
|
INT __cdecl CRTDLL_iswalnum( WCHAR wc );
|
||||||
|
INT __cdecl CRTDLL_iswalpha( WCHAR wc );
|
||||||
|
INT __cdecl CRTDLL_iswcntrl( WCHAR wc );
|
||||||
|
INT __cdecl CRTDLL_iswdigit( WCHAR wc );
|
||||||
|
INT __cdecl CRTDLL_iswgraph( WCHAR wc );
|
||||||
|
INT __cdecl CRTDLL_iswlower( WCHAR wc );
|
||||||
|
INT __cdecl CRTDLL_iswprint( WCHAR wc );
|
||||||
|
INT __cdecl CRTDLL_iswpunct( WCHAR wc );
|
||||||
|
INT __cdecl CRTDLL_iswspace( WCHAR wc );
|
||||||
|
INT __cdecl CRTDLL_iswupper( WCHAR wc );
|
||||||
|
INT __cdecl CRTDLL_iswxdigit( WCHAR wc );
|
||||||
|
INT __cdecl CRTDLL_iswctype( WCHAR wc, WCHAR wct );
|
||||||
INT __cdecl CRTDLL_mbstowcs( LPWSTR dst, LPCSTR src, INT n );
|
INT __cdecl CRTDLL_mbstowcs( LPWSTR dst, LPCSTR src, INT n );
|
||||||
INT __cdecl CRTDLL_mbtowc( WCHAR *dst, LPCSTR str, INT n );
|
INT __cdecl CRTDLL_mbtowc( WCHAR *dst, LPCSTR str, INT n );
|
||||||
WCHAR __cdecl CRTDLL_towlower( WCHAR ch );
|
WCHAR __cdecl CRTDLL_towlower( WCHAR ch );
|
||||||
|
@ -76,6 +88,17 @@ INT __cdecl CRTDLL_wctomb( LPSTR dst, WCHAR ch );
|
||||||
#define _wcsrev CRTDLL__wcsrev
|
#define _wcsrev CRTDLL__wcsrev
|
||||||
#define _wcsset CRTDLL__wcsset
|
#define _wcsset CRTDLL__wcsset
|
||||||
#define _wcsupr CRTDLL__wcsupr
|
#define _wcsupr CRTDLL__wcsupr
|
||||||
|
#define iswalnum CRTDLL_iswalnum
|
||||||
|
#define iswalpha CRTDLL_iswalpha
|
||||||
|
#define iswcntrl CRTDLL_iswcntrl
|
||||||
|
#define iswdigit CRTDLL_iswdigit
|
||||||
|
#define iswgraph CRTDLL_iswgraph
|
||||||
|
#define iswlower CRTDLL_iswlower
|
||||||
|
#define iswprint CRTDLL_iswprint
|
||||||
|
#define iswpunct CRTDLL_iswpunct
|
||||||
|
#define iswspace CRTDLL_iswspace
|
||||||
|
#define iswupper CRTDLL_iswupper
|
||||||
|
#define iswxdigit CRTDLL_iswxdigit
|
||||||
#define mbstowcs CRTDLL_mbstowcs
|
#define mbstowcs CRTDLL_mbstowcs
|
||||||
#define mbtowc CRTDLL_mbtowc
|
#define mbtowc CRTDLL_mbtowc
|
||||||
#define towlower CRTDLL_towlower
|
#define towlower CRTDLL_towlower
|
||||||
|
|
|
@ -172,7 +172,7 @@ typedef struct {
|
||||||
WORD wExponent;
|
WORD wExponent;
|
||||||
WORD wReserved;
|
WORD wReserved;
|
||||||
#endif /* DIRECTINPUT_VERSION >= 0x0500 */
|
#endif /* DIRECTINPUT_VERSION >= 0x0500 */
|
||||||
} DIDEVICEOBJECTINSTANCE, DIDEVICEOBJECTINSTANCEA, *LPDIDEVICEOBJECTINSTANCEA,*LPCDIDEVICEOBJECTINSTANCEA;
|
} DIDEVICEOBJECTINSTANCEA, *LPDIDEVICEOBJECTINSTANCEA,*LPCDIDEVICEOBJECTINSTANCEA;
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
DWORD dwSize;
|
DWORD dwSize;
|
||||||
|
|
|
@ -8,8 +8,6 @@
|
||||||
#ifndef __WINE_DISPDIB_H
|
#ifndef __WINE_DISPDIB_H
|
||||||
#define __WINE_DISPDIB_H
|
#define __WINE_DISPDIB_H
|
||||||
|
|
||||||
#include "wingdi.h" /* for LPBITMAPINFO */
|
|
||||||
|
|
||||||
/* error codes */
|
/* error codes */
|
||||||
#define DISPLAYDIB_NOERROR 0x0000
|
#define DISPLAYDIB_NOERROR 0x0000
|
||||||
#define DISPLAYDIB_NOTSUPPORTED 0x0001
|
#define DISPLAYDIB_NOTSUPPORTED 0x0001
|
||||||
|
|
|
@ -6,8 +6,9 @@
|
||||||
#ifndef __WINE_ENHMETAFILE_H
|
#ifndef __WINE_ENHMETAFILE_H
|
||||||
#define __WINE_ENHMETAFILE_H
|
#define __WINE_ENHMETAFILE_H
|
||||||
|
|
||||||
#include "wingdi.h"
|
|
||||||
#include "gdi.h"
|
#include "gdi.h"
|
||||||
|
#include "windef.h"
|
||||||
|
#include "wingdi.h"
|
||||||
|
|
||||||
/* GDI32 enhanced metafile object */
|
/* GDI32 enhanced metafile object */
|
||||||
typedef struct
|
typedef struct
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
#ifndef __WINE_IMAGELIST_H
|
#ifndef __WINE_IMAGELIST_H
|
||||||
#define __WINE_IMAGELIST_H
|
#define __WINE_IMAGELIST_H
|
||||||
|
|
||||||
|
#include "windef.h"
|
||||||
#include "wingdi.h"
|
#include "wingdi.h"
|
||||||
|
|
||||||
#include "pshpack1.h"
|
#include "pshpack1.h"
|
||||||
|
|
|
@ -7,8 +7,9 @@
|
||||||
#ifndef __WINE_METAFILE_H
|
#ifndef __WINE_METAFILE_H
|
||||||
#define __WINE_METAFILE_H
|
#define __WINE_METAFILE_H
|
||||||
|
|
||||||
#include "wingdi.h"
|
|
||||||
#include "gdi.h"
|
#include "gdi.h"
|
||||||
|
#include "windef.h"
|
||||||
|
#include "wingdi.h"
|
||||||
|
|
||||||
/* GDI32 metafile object */
|
/* GDI32 metafile object */
|
||||||
typedef struct
|
typedef struct
|
||||||
|
|
|
@ -7,8 +7,9 @@
|
||||||
#ifndef __WINE_REGION_H
|
#ifndef __WINE_REGION_H
|
||||||
#define __WINE_REGION_H
|
#define __WINE_REGION_H
|
||||||
|
|
||||||
#include "wingdi.h"
|
|
||||||
#include "gdi.h"
|
#include "gdi.h"
|
||||||
|
#include "windef.h"
|
||||||
|
#include "wingdi.h"
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
INT size;
|
INT size;
|
||||||
|
|
|
@ -12,26 +12,6 @@
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef _WINDOWS
|
|
||||||
#define FAR
|
|
||||||
#define CALLBACK
|
|
||||||
#define SQL_API
|
|
||||||
#define BOOL int
|
|
||||||
typedef void* HWND;
|
|
||||||
typedef char* GUID;
|
|
||||||
#define GUID_DEFINED
|
|
||||||
typedef char CHAR;
|
|
||||||
typedef void VOID;
|
|
||||||
typedef unsigned short WORD;
|
|
||||||
typedef unsigned long DWORD;
|
|
||||||
typedef unsigned char BYTE;
|
|
||||||
typedef unsigned short WCHAR;
|
|
||||||
typedef WCHAR* LPWSTR;
|
|
||||||
typedef const char* LPCSTR;
|
|
||||||
typedef char* LPSTR;
|
|
||||||
typedef DWORD* LPDWORD;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
typedef unsigned char SQLCHAR;
|
typedef unsigned char SQLCHAR;
|
||||||
|
|
||||||
#if (ODBCVER >= 0x0300)
|
#if (ODBCVER >= 0x0300)
|
||||||
|
|
|
@ -10,6 +10,9 @@
|
||||||
#ifndef __WINE_ICMPAPI_H
|
#ifndef __WINE_ICMPAPI_H
|
||||||
#define __WINE_ICMPAPI_H
|
#define __WINE_ICMPAPI_H
|
||||||
|
|
||||||
|
#include "wine/ipexport.h"
|
||||||
|
#include "windef.h"
|
||||||
|
|
||||||
HANDLE WINAPI IcmpCreateFile(
|
HANDLE WINAPI IcmpCreateFile(
|
||||||
VOID
|
VOID
|
||||||
);
|
);
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
#define __WINE_WINE_OBJ_COMMDLGBROWSER_H
|
#define __WINE_WINE_OBJ_COMMDLGBROWSER_H
|
||||||
|
|
||||||
#include "winbase.h"
|
#include "winbase.h"
|
||||||
|
#include "wingdi.h"
|
||||||
#include "winuser.h"
|
#include "winuser.h"
|
||||||
#include "wine/obj_base.h"
|
#include "wine/obj_base.h"
|
||||||
#include "wine/obj_shellview.h"
|
#include "wine/obj_shellview.h"
|
||||||
|
|
|
@ -10,6 +10,7 @@
|
||||||
#define __WINE_WINE_OBJ_CONTEXTMENU_H
|
#define __WINE_WINE_OBJ_CONTEXTMENU_H
|
||||||
|
|
||||||
#include "winbase.h"
|
#include "winbase.h"
|
||||||
|
#include "wingdi.h"
|
||||||
#include "winuser.h"
|
#include "winuser.h"
|
||||||
#include "wine/obj_base.h"
|
#include "wine/obj_base.h"
|
||||||
|
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
#define __WINE_WINE_OBJ_DOCKINGWINDOWFRAME_H
|
#define __WINE_WINE_OBJ_DOCKINGWINDOWFRAME_H
|
||||||
|
|
||||||
#include "winbase.h"
|
#include "winbase.h"
|
||||||
|
#include "wingdi.h"
|
||||||
#include "winuser.h"
|
#include "winuser.h"
|
||||||
#include "wine/obj_base.h"
|
#include "wine/obj_base.h"
|
||||||
#include "wine/obj_inplace.h"
|
#include "wine/obj_inplace.h"
|
||||||
|
|
|
@ -10,6 +10,7 @@
|
||||||
#include "wine/obj_oleaut.h" /* for DISPID */
|
#include "wine/obj_oleaut.h" /* for DISPID */
|
||||||
#include "wine/obj_storage.h"
|
#include "wine/obj_storage.h"
|
||||||
#include "winbase.h"
|
#include "winbase.h"
|
||||||
|
#include "wingdi.h"
|
||||||
#include "winuser.h"
|
#include "winuser.h"
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
|
|
||||||
#include "shell.h"
|
#include "shell.h"
|
||||||
#include "winbase.h"
|
#include "winbase.h"
|
||||||
|
#include "wingdi.h"
|
||||||
#include "winuser.h"
|
#include "winuser.h"
|
||||||
#include "wine/obj_base.h"
|
#include "wine/obj_base.h"
|
||||||
#include "wine/obj_dataobject.h"
|
#include "wine/obj_dataobject.h"
|
||||||
|
|
|
@ -7,6 +7,8 @@
|
||||||
#ifndef __WINE_WINDEF16_H
|
#ifndef __WINE_WINDEF16_H
|
||||||
#define __WINE_WINDEF16_H
|
#define __WINE_WINDEF16_H
|
||||||
|
|
||||||
|
#include "windef.h"
|
||||||
|
|
||||||
/* Standard data types */
|
/* Standard data types */
|
||||||
|
|
||||||
typedef short INT16;
|
typedef short INT16;
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
#ifndef __WINE_WINE_WINGDI16_H
|
#ifndef __WINE_WINE_WINGDI16_H
|
||||||
#define __WINE_WINE_WINGDI16_H
|
#define __WINE_WINE_WINGDI16_H
|
||||||
|
|
||||||
|
#include "windef.h"
|
||||||
#include "wingdi.h"
|
#include "wingdi.h"
|
||||||
|
|
||||||
#include "pshpack1.h"
|
#include "pshpack1.h"
|
||||||
|
|
|
@ -8,6 +8,8 @@
|
||||||
#define __WINE_WINPOS_H
|
#define __WINE_WINPOS_H
|
||||||
|
|
||||||
#include "windef.h"
|
#include "windef.h"
|
||||||
|
#include "wingdi.h"
|
||||||
|
#include "winuser.h"
|
||||||
|
|
||||||
struct tagWND;
|
struct tagWND;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue