mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 02:46:32 +00:00
205 lines
4.8 KiB
C
205 lines
4.8 KiB
C
/*
|
|
* Basic types definitions
|
|
*
|
|
* Copyright 1996 Alexandre Julliard
|
|
*/
|
|
|
|
#ifndef __WINE_WINDEF_H
|
|
#define __WINE_WINDEF_H
|
|
|
|
#ifdef __WINE__
|
|
# undef UNICODE
|
|
#endif /* __WINE__ */
|
|
|
|
#define WINVER 0x0500
|
|
|
|
#include "winnt.h"
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
/* Macros to map Winelib names to the correct implementation name */
|
|
/* depending on __WINE__ and UNICODE macros. */
|
|
/* Note that Winelib is purely Win32. */
|
|
|
|
#ifdef __WINE__
|
|
# define WINELIB_NAME_AW(func) \
|
|
func##_must_be_suffixed_with_W_or_A_in_this_context \
|
|
func##_must_be_suffixed_with_W_or_A_in_this_context
|
|
#else /* __WINE__ */
|
|
# ifdef UNICODE
|
|
# define WINELIB_NAME_AW(func) func##W
|
|
# else
|
|
# define WINELIB_NAME_AW(func) func##A
|
|
# endif /* UNICODE */
|
|
#endif /* __WINE__ */
|
|
|
|
#ifdef __WINE__
|
|
# define DECL_WINELIB_TYPE_AW(type) /* nothing */
|
|
#else /* __WINE__ */
|
|
# define DECL_WINELIB_TYPE_AW(type) typedef WINELIB_NAME_AW(type) type;
|
|
#endif /* __WINE__ */
|
|
|
|
|
|
/* Integer types */
|
|
typedef UINT WPARAM;
|
|
typedef LONG LPARAM;
|
|
typedef LONG LRESULT;
|
|
typedef WORD ATOM;
|
|
typedef WORD CATCHBUF[9];
|
|
typedef WORD *LPCATCHBUF;
|
|
|
|
/* Handle types that exist both in Win16 and Win32. */
|
|
|
|
typedef int HFILE;
|
|
DECLARE_OLD_HANDLE(HACCEL);
|
|
DECLARE_OLD_HANDLE(HBITMAP);
|
|
DECLARE_OLD_HANDLE(HBRUSH);
|
|
DECLARE_HANDLE(HCOLORSPACE);
|
|
DECLARE_OLD_HANDLE(HDC);
|
|
DECLARE_HANDLE(HDESK);
|
|
DECLARE_OLD_HANDLE(HENHMETAFILE);
|
|
DECLARE_OLD_HANDLE(HFONT);
|
|
DECLARE_OLD_HANDLE(HHOOK);
|
|
DECLARE_OLD_HANDLE(HICON);
|
|
DECLARE_OLD_HANDLE(HINSTANCE);
|
|
DECLARE_OLD_HANDLE(HKEY);
|
|
DECLARE_OLD_HANDLE(HKL);
|
|
DECLARE_OLD_HANDLE(HMENU);
|
|
DECLARE_OLD_HANDLE(HMETAFILE);
|
|
DECLARE_OLD_HANDLE(HMONITOR);
|
|
DECLARE_OLD_HANDLE(HPALETTE);
|
|
DECLARE_OLD_HANDLE(HPEN);
|
|
DECLARE_OLD_HANDLE(HRGN);
|
|
DECLARE_OLD_HANDLE(HRSRC);
|
|
DECLARE_OLD_HANDLE(HTASK);
|
|
DECLARE_HANDLE(HWINSTA);
|
|
DECLARE_OLD_HANDLE(HWND);
|
|
|
|
/* Handle types that must remain interchangeable even with strict on */
|
|
|
|
typedef HINSTANCE HMODULE;
|
|
typedef HANDLE HGDIOBJ;
|
|
typedef HANDLE HGLOBAL;
|
|
typedef HANDLE HLOCAL;
|
|
typedef HANDLE GLOBALHANDLE;
|
|
typedef HANDLE LOCALHANDLE;
|
|
typedef HICON HCURSOR;
|
|
|
|
/* Callback function pointers types */
|
|
|
|
typedef INT CALLBACK (*FARPROC)();
|
|
typedef INT CALLBACK (*PROC)();
|
|
|
|
|
|
/* Macros to split words and longs. */
|
|
|
|
#define LOBYTE(w) ((BYTE)(WORD)(w))
|
|
#define HIBYTE(w) ((BYTE)((WORD)(w) >> 8))
|
|
|
|
#define LOWORD(l) ((WORD)(DWORD)(l))
|
|
#define HIWORD(l) ((WORD)((DWORD)(l) >> 16))
|
|
|
|
#define SLOWORD(l) ((SHORT)(LONG)(l))
|
|
#define SHIWORD(l) ((SHORT)((LONG)(l) >> 16))
|
|
|
|
#define MAKEWORD(low,high) ((WORD)(((BYTE)(low)) | ((WORD)((BYTE)(high))) << 8))
|
|
#define MAKELONG(low,high) ((LONG)(((WORD)(low)) | (((DWORD)((WORD)(high))) << 16)))
|
|
#define MAKELPARAM(low,high) ((LPARAM)MAKELONG(low,high))
|
|
#define MAKEWPARAM(low,high) ((WPARAM)MAKELONG(low,high))
|
|
#define MAKELRESULT(low,high) ((LRESULT)MAKELONG(low,high))
|
|
#define MAKEINTATOM(atom) ((LPCSTR)MAKELONG((atom),0))
|
|
|
|
#define SELECTOROF(ptr) (HIWORD(ptr))
|
|
#define OFFSETOF(ptr) (LOWORD(ptr))
|
|
|
|
#ifdef __WINE__
|
|
/* macros to set parts of a DWORD (not in the Windows API) */
|
|
#define SET_LOWORD(dw,val) ((dw) = ((dw) & 0xffff0000) | LOWORD(val))
|
|
#define SET_LOBYTE(dw,val) ((dw) = ((dw) & 0xffffff00) | LOBYTE(val))
|
|
#define SET_HIBYTE(dw,val) ((dw) = ((dw) & 0xffff00ff) | (LOBYTE(val) << 8))
|
|
#define ADD_LOWORD(dw,val) ((dw) = ((dw) & 0xffff0000) | LOWORD((DWORD)(dw)+(val)))
|
|
#endif
|
|
|
|
/* min and max macros */
|
|
#ifndef NOMINMAX
|
|
#ifndef max
|
|
#define max(a,b) (((a) > (b)) ? (a) : (b))
|
|
#endif
|
|
#ifndef min
|
|
#define min(a,b) (((a) < (b)) ? (a) : (b))
|
|
#endif
|
|
#endif /* NOMINMAX */
|
|
|
|
#ifndef _MAX_PATH
|
|
/* FIXME: These are supposed to be in stdlib.h only */
|
|
#define _MAX_DRIVE 3
|
|
#define _MAX_FNAME 256
|
|
#define _MAX_DIR _MAX_FNAME
|
|
#define _MAX_EXT _MAX_FNAME
|
|
#define _MAX_PATH 260
|
|
#endif
|
|
#define MAX_PATH _MAX_PATH
|
|
|
|
|
|
#define HFILE_ERROR ((HFILE)-1)
|
|
|
|
/* The SIZE structure */
|
|
typedef struct tagSIZE
|
|
{
|
|
LONG cx;
|
|
LONG cy;
|
|
} SIZE, *PSIZE, *LPSIZE;
|
|
|
|
typedef SIZE SIZEL, *PSIZEL, *LPSIZEL;
|
|
|
|
/* The POINT structure */
|
|
typedef struct tagPOINT
|
|
{
|
|
LONG x;
|
|
LONG y;
|
|
} POINT, *PPOINT, *LPPOINT;
|
|
|
|
typedef struct _POINTL
|
|
{
|
|
LONG x;
|
|
LONG y;
|
|
} POINTL;
|
|
|
|
/* The POINTS structure */
|
|
|
|
typedef struct tagPOINTS
|
|
{
|
|
SHORT x;
|
|
SHORT y;
|
|
} POINTS, *PPOINTS, *LPPOINTS;
|
|
|
|
/* The RECT structure */
|
|
typedef struct tagRECT
|
|
{
|
|
INT left;
|
|
INT top;
|
|
INT right;
|
|
INT bottom;
|
|
} RECT, *PRECT, *LPRECT;
|
|
typedef const RECT *LPCRECT;
|
|
|
|
|
|
typedef struct tagRECTL
|
|
{
|
|
LONG left;
|
|
LONG top;
|
|
LONG right;
|
|
LONG bottom;
|
|
} RECTL, *PRECTL, *LPRECTL;
|
|
|
|
typedef const RECTL *LPCRECTL;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __WINE_WINDEF_H */
|