1999-03-14 17:35:05 +01:00
|
|
|
/*
|
|
|
|
* Basic types definitions
|
|
|
|
*
|
|
|
|
* Copyright 1996 Alexandre Julliard
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
1999-03-14 17:35:05 +01:00
|
|
|
*/
|
1999-02-09 16:46:25 +01:00
|
|
|
|
2004-09-20 21:13:16 +02:00
|
|
|
#ifndef _WINDEF_
|
|
|
|
#define _WINDEF_
|
1999-02-09 16:46:25 +01:00
|
|
|
|
2002-10-23 22:19:48 +02:00
|
|
|
#ifndef WINVER
|
2000-10-13 19:10:34 +02:00
|
|
|
#define WINVER 0x0500
|
2002-10-23 22:19:48 +02:00
|
|
|
#endif
|
2000-10-13 19:10:34 +02:00
|
|
|
|
2002-12-10 21:02:17 +01:00
|
|
|
#ifndef NO_STRICT
|
|
|
|
# ifndef STRICT
|
|
|
|
# define STRICT
|
|
|
|
# endif /* STRICT */
|
|
|
|
#endif /* NO_STRICT */
|
|
|
|
|
2002-12-10 23:56:43 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Calling conventions definitions */
|
|
|
|
|
2003-01-15 04:31:49 +01:00
|
|
|
#if defined(__i386__) && !defined(_X86_)
|
|
|
|
# define _X86_
|
|
|
|
#endif
|
|
|
|
|
2005-10-04 13:30:27 +02:00
|
|
|
#if defined(_X86_) && !defined(__i386__)
|
|
|
|
# define __i386__
|
|
|
|
#endif
|
|
|
|
|
2006-07-10 13:05:20 +02:00
|
|
|
#if defined(__x86_64__) && !defined(_WIN64)
|
2005-09-22 12:58:04 +02:00
|
|
|
#define _WIN64
|
|
|
|
#endif
|
|
|
|
|
2003-01-15 04:31:49 +01:00
|
|
|
#ifndef __stdcall
|
|
|
|
# ifdef __i386__
|
|
|
|
# ifdef __GNUC__
|
2006-12-04 19:55:35 +01:00
|
|
|
# ifdef __APPLE__ /* Mac OS X uses a 16-byte aligned stack and not a 4-byte one */
|
2006-06-09 04:57:42 +02:00
|
|
|
# define __stdcall __attribute__((__stdcall__)) __attribute__((__force_align_arg_pointer__))
|
|
|
|
# else
|
|
|
|
# define __stdcall __attribute__((__stdcall__))
|
|
|
|
# endif
|
2003-01-15 04:31:49 +01:00
|
|
|
# elif defined(_MSC_VER)
|
|
|
|
/* Nothing needs to be done. __stdcall already exists */
|
|
|
|
# else
|
|
|
|
# error You need to define __stdcall for your compiler
|
|
|
|
# endif
|
|
|
|
# else /* __i386__ */
|
|
|
|
# define __stdcall
|
|
|
|
# endif /* __i386__ */
|
|
|
|
#endif /* __stdcall */
|
|
|
|
|
|
|
|
#ifndef __cdecl
|
|
|
|
# if defined(__i386__) && defined(__GNUC__)
|
2006-12-04 19:55:35 +01:00
|
|
|
# ifdef __APPLE__ /* Mac OS X uses 16-byte aligned stack and not a 4-byte one */
|
2006-06-09 04:57:42 +02:00
|
|
|
# define __cdecl __attribute__((__cdecl__)) __attribute__((__force_align_arg_pointer__))
|
|
|
|
# else
|
|
|
|
# define __cdecl __attribute__((__cdecl__))
|
|
|
|
# endif
|
2003-01-15 04:31:49 +01:00
|
|
|
# elif !defined(_MSC_VER)
|
|
|
|
# define __cdecl
|
2002-12-10 23:56:43 +01:00
|
|
|
# endif
|
2005-04-11 14:50:19 +02:00
|
|
|
#endif /* __cdecl */
|
2002-12-10 23:56:43 +01:00
|
|
|
|
2003-08-27 04:07:02 +02:00
|
|
|
#ifdef __WINESRC__
|
|
|
|
#define __ONLY_IN_WINELIB(x) do_not_use_this_in_wine
|
|
|
|
#else
|
|
|
|
#define __ONLY_IN_WINELIB(x) x
|
|
|
|
#endif
|
2002-12-10 23:56:43 +01:00
|
|
|
|
|
|
|
#ifndef pascal
|
2003-08-27 04:07:02 +02:00
|
|
|
#define pascal __ONLY_IN_WINELIB(__stdcall)
|
2002-12-10 23:56:43 +01:00
|
|
|
#endif
|
|
|
|
#ifndef _pascal
|
2003-08-27 04:07:02 +02:00
|
|
|
#define _pascal __ONLY_IN_WINELIB(__stdcall)
|
2002-12-10 23:56:43 +01:00
|
|
|
#endif
|
|
|
|
#ifndef _stdcall
|
2003-08-27 04:07:02 +02:00
|
|
|
#define _stdcall __ONLY_IN_WINELIB(__stdcall)
|
2002-12-10 23:56:43 +01:00
|
|
|
#endif
|
|
|
|
#ifndef _fastcall
|
2003-08-27 04:07:02 +02:00
|
|
|
#define _fastcall __ONLY_IN_WINELIB(__stdcall)
|
2002-12-10 23:56:43 +01:00
|
|
|
#endif
|
|
|
|
#ifndef __fastcall
|
2003-08-27 04:07:02 +02:00
|
|
|
#define __fastcall __ONLY_IN_WINELIB(__stdcall)
|
2002-12-10 23:56:43 +01:00
|
|
|
#endif
|
|
|
|
#ifndef __export
|
2003-08-27 04:07:02 +02:00
|
|
|
#define __export __ONLY_IN_WINELIB(__stdcall)
|
2002-12-10 23:56:43 +01:00
|
|
|
#endif
|
|
|
|
#ifndef cdecl
|
2003-08-27 04:07:02 +02:00
|
|
|
#define cdecl __ONLY_IN_WINELIB(__cdecl)
|
2002-12-10 23:56:43 +01:00
|
|
|
#endif
|
|
|
|
#ifndef _cdecl
|
2003-08-27 04:07:02 +02:00
|
|
|
#define _cdecl __ONLY_IN_WINELIB(__cdecl)
|
2002-12-10 23:56:43 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef near
|
2005-11-08 17:13:21 +01:00
|
|
|
#define near __ONLY_IN_WINELIB(/* nothing */)
|
2002-12-10 23:56:43 +01:00
|
|
|
#endif
|
|
|
|
#ifndef far
|
2005-11-08 17:13:21 +01:00
|
|
|
#define far __ONLY_IN_WINELIB(/* nothing */)
|
2002-12-10 23:56:43 +01:00
|
|
|
#endif
|
|
|
|
#ifndef _near
|
2005-11-08 17:13:21 +01:00
|
|
|
#define _near __ONLY_IN_WINELIB(/* nothing */)
|
2002-12-10 23:56:43 +01:00
|
|
|
#endif
|
|
|
|
#ifndef _far
|
2005-11-08 17:13:21 +01:00
|
|
|
#define _far __ONLY_IN_WINELIB(/* nothing */)
|
2002-12-10 23:56:43 +01:00
|
|
|
#endif
|
|
|
|
#ifndef NEAR
|
2005-11-08 17:13:21 +01:00
|
|
|
#define NEAR __ONLY_IN_WINELIB(/* nothing */)
|
2002-12-10 23:56:43 +01:00
|
|
|
#endif
|
|
|
|
#ifndef FAR
|
2005-11-08 17:13:21 +01:00
|
|
|
#define FAR __ONLY_IN_WINELIB(/* nothing */)
|
2002-12-10 23:56:43 +01:00
|
|
|
#endif
|
|
|
|
|
2003-09-22 21:22:14 +02:00
|
|
|
#ifndef _MSC_VER
|
|
|
|
# ifndef _declspec
|
2005-11-08 17:13:21 +01:00
|
|
|
# define _declspec(x) __ONLY_IN_WINELIB(/* nothing */)
|
2003-09-22 21:22:14 +02:00
|
|
|
# endif
|
|
|
|
# ifndef __declspec
|
2005-11-08 17:13:21 +01:00
|
|
|
# define __declspec(x) __ONLY_IN_WINELIB(/* nothing */)
|
2003-09-22 21:22:14 +02:00
|
|
|
# endif
|
2002-12-10 23:56:43 +01:00
|
|
|
#endif
|
|
|
|
|
2005-10-04 13:30:27 +02:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
# define inline __inline
|
|
|
|
#endif
|
|
|
|
|
2002-12-10 23:56:43 +01:00
|
|
|
#define CALLBACK __stdcall
|
|
|
|
#define WINAPI __stdcall
|
|
|
|
#define APIPRIVATE __stdcall
|
|
|
|
#define PASCAL __stdcall
|
|
|
|
#define CDECL __cdecl
|
|
|
|
#define _CDECL __cdecl
|
|
|
|
#define WINAPIV __cdecl
|
|
|
|
#define APIENTRY WINAPI
|
|
|
|
#define CONST const
|
1999-03-14 17:35:05 +01:00
|
|
|
|
2002-12-10 23:56:43 +01:00
|
|
|
/* Misc. constants. */
|
1999-03-14 17:35:05 +01:00
|
|
|
|
2002-12-10 23:56:43 +01:00
|
|
|
#undef NULL
|
2000-12-19 05:51:10 +01:00
|
|
|
#ifdef __cplusplus
|
2002-12-10 23:56:43 +01:00
|
|
|
#define NULL 0
|
|
|
|
#else
|
|
|
|
#define NULL ((void*)0)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef FALSE
|
|
|
|
#undef FALSE
|
2000-12-19 05:51:10 +01:00
|
|
|
#endif
|
2002-12-10 23:56:43 +01:00
|
|
|
#define FALSE 0
|
2000-12-19 05:51:10 +01:00
|
|
|
|
2002-12-10 23:56:43 +01:00
|
|
|
#ifdef TRUE
|
|
|
|
#undef TRUE
|
|
|
|
#endif
|
|
|
|
#define TRUE 1
|
|
|
|
|
|
|
|
#ifndef IN
|
|
|
|
#define IN
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef OUT
|
|
|
|
#define OUT
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef OPTIONAL
|
|
|
|
#define OPTIONAL
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Standard data types */
|
|
|
|
|
|
|
|
typedef void *LPVOID;
|
|
|
|
typedef const void *LPCVOID;
|
|
|
|
typedef int BOOL, *PBOOL, *LPBOOL;
|
|
|
|
typedef unsigned char BYTE, *PBYTE, *LPBYTE;
|
|
|
|
typedef unsigned char UCHAR, *PUCHAR;
|
|
|
|
typedef unsigned short WORD, *PWORD, *LPWORD;
|
|
|
|
typedef unsigned short USHORT, *PUSHORT;
|
|
|
|
typedef int INT, *PINT, *LPINT;
|
|
|
|
typedef unsigned int UINT, *PUINT;
|
2005-09-22 12:58:04 +02:00
|
|
|
typedef float FLOAT, *PFLOAT;
|
|
|
|
typedef char *PSZ;
|
2006-12-20 14:26:08 +01:00
|
|
|
#ifdef _MSC_VER
|
2002-12-10 23:56:43 +01:00
|
|
|
typedef long *LPLONG;
|
|
|
|
typedef unsigned long DWORD, *PDWORD, *LPDWORD;
|
|
|
|
typedef unsigned long ULONG, *PULONG;
|
2006-09-29 01:18:35 +02:00
|
|
|
#else
|
|
|
|
typedef int *LPLONG;
|
|
|
|
typedef unsigned int DWORD, *PDWORD, *LPDWORD;
|
|
|
|
typedef unsigned int ULONG, *PULONG;
|
2005-09-22 12:58:04 +02:00
|
|
|
#endif
|
2002-12-10 23:56:43 +01:00
|
|
|
|
1999-03-14 17:35:05 +01:00
|
|
|
/* Macros to map Winelib names to the correct implementation name */
|
|
|
|
/* Note that Winelib is purely Win32. */
|
|
|
|
|
2003-01-04 01:52:18 +01:00
|
|
|
#ifdef __WINESRC__
|
2005-08-15 22:53:40 +02:00
|
|
|
#define WINE_NO_UNICODE_MACROS
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef WINE_NO_UNICODE_MACROS
|
1999-12-25 23:45:57 +01:00
|
|
|
# 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
|
2005-08-15 22:53:40 +02:00
|
|
|
#else /* WINE_NO_UNICODE_MACROS */
|
1999-03-14 17:35:05 +01:00
|
|
|
# ifdef UNICODE
|
|
|
|
# define WINELIB_NAME_AW(func) func##W
|
|
|
|
# else
|
|
|
|
# define WINELIB_NAME_AW(func) func##A
|
2005-08-15 22:53:40 +02:00
|
|
|
# endif
|
|
|
|
#endif /* WINE_NO_UNICODE_MACROS */
|
1999-03-14 17:35:05 +01:00
|
|
|
|
2005-08-15 22:53:40 +02:00
|
|
|
#ifdef WINE_NO_UNICODE_MACROS
|
1999-03-14 17:35:05 +01:00
|
|
|
# define DECL_WINELIB_TYPE_AW(type) /* nothing */
|
2005-08-15 22:53:40 +02:00
|
|
|
#else
|
1999-03-14 17:35:05 +01:00
|
|
|
# define DECL_WINELIB_TYPE_AW(type) typedef WINELIB_NAME_AW(type) type;
|
2005-08-15 22:53:40 +02:00
|
|
|
#endif
|
1999-03-14 17:35:05 +01:00
|
|
|
|
2003-09-24 07:26:00 +02:00
|
|
|
#include <winnt.h>
|
1999-04-25 13:05:30 +02:00
|
|
|
|
2003-01-10 02:45:13 +01:00
|
|
|
/* Polymorphic types */
|
|
|
|
|
|
|
|
typedef UINT_PTR WPARAM;
|
|
|
|
typedef LONG_PTR LPARAM;
|
|
|
|
typedef LONG_PTR LRESULT;
|
|
|
|
|
2001-07-30 20:57:18 +02:00
|
|
|
/* Integer types */
|
2003-01-10 02:45:13 +01:00
|
|
|
|
1999-03-14 17:35:05 +01:00
|
|
|
typedef WORD ATOM;
|
2001-10-08 22:31:59 +02:00
|
|
|
typedef DWORD COLORREF, *LPCOLORREF;
|
|
|
|
|
1999-02-12 14:44:38 +01:00
|
|
|
|
2002-12-10 23:56:43 +01:00
|
|
|
/* Handle types */
|
1999-03-14 17:35:05 +01:00
|
|
|
|
2001-07-30 20:57:18 +02:00
|
|
|
typedef int HFILE;
|
2002-08-28 02:39:39 +02:00
|
|
|
DECLARE_HANDLE(HACCEL);
|
2002-10-19 19:20:02 +02:00
|
|
|
DECLARE_HANDLE(HBITMAP);
|
|
|
|
DECLARE_HANDLE(HBRUSH);
|
2000-12-29 04:40:55 +01:00
|
|
|
DECLARE_HANDLE(HCOLORSPACE);
|
2002-10-19 19:20:02 +02:00
|
|
|
DECLARE_HANDLE(HDC);
|
2001-07-30 20:57:18 +02:00
|
|
|
DECLARE_HANDLE(HDESK);
|
2002-07-29 02:14:59 +02:00
|
|
|
DECLARE_HANDLE(HENHMETAFILE);
|
2002-10-19 19:20:02 +02:00
|
|
|
DECLARE_HANDLE(HFONT);
|
2004-08-16 22:07:06 +02:00
|
|
|
DECLARE_HANDLE(HGLRC);
|
2002-07-28 19:42:05 +02:00
|
|
|
DECLARE_HANDLE(HHOOK);
|
2002-10-10 23:22:09 +02:00
|
|
|
DECLARE_HANDLE(HICON);
|
2002-10-19 19:20:02 +02:00
|
|
|
DECLARE_HANDLE(HINSTANCE);
|
2002-09-24 05:09:12 +02:00
|
|
|
DECLARE_HANDLE(HKEY);
|
2002-12-10 23:56:43 +01:00
|
|
|
typedef HKEY *PHKEY;
|
2002-08-16 03:34:19 +02:00
|
|
|
DECLARE_HANDLE(HKL);
|
2002-10-19 19:20:02 +02:00
|
|
|
DECLARE_HANDLE(HMENU);
|
2002-07-29 02:14:59 +02:00
|
|
|
DECLARE_HANDLE(HMETAFILE);
|
2002-07-19 02:28:13 +02:00
|
|
|
DECLARE_HANDLE(HMONITOR);
|
2002-08-29 03:55:55 +02:00
|
|
|
DECLARE_HANDLE(HPALETTE);
|
2002-10-19 19:20:02 +02:00
|
|
|
DECLARE_HANDLE(HPEN);
|
|
|
|
DECLARE_HANDLE(HRGN);
|
2002-09-17 00:47:05 +02:00
|
|
|
DECLARE_HANDLE(HRSRC);
|
2002-07-29 01:48:27 +02:00
|
|
|
DECLARE_HANDLE(HTASK);
|
2002-07-11 01:20:49 +02:00
|
|
|
DECLARE_HANDLE(HWINEVENTHOOK);
|
2001-01-09 21:56:06 +01:00
|
|
|
DECLARE_HANDLE(HWINSTA);
|
2002-09-06 22:40:42 +02:00
|
|
|
DECLARE_HANDLE(HWND);
|
1999-03-14 17:35:05 +01:00
|
|
|
|
1999-04-25 13:05:30 +02:00
|
|
|
/* Handle types that must remain interchangeable even with strict on */
|
|
|
|
|
|
|
|
typedef HINSTANCE HMODULE;
|
|
|
|
typedef HANDLE HGDIOBJ;
|
|
|
|
typedef HANDLE HGLOBAL;
|
|
|
|
typedef HANDLE HLOCAL;
|
2000-03-19 15:21:38 +01:00
|
|
|
typedef HANDLE GLOBALHANDLE;
|
|
|
|
typedef HANDLE LOCALHANDLE;
|
2000-11-10 23:32:45 +01:00
|
|
|
typedef HICON HCURSOR;
|
1999-04-25 13:05:30 +02:00
|
|
|
|
1999-03-14 17:35:05 +01:00
|
|
|
/* Callback function pointers types */
|
|
|
|
|
2006-06-03 17:27:33 +02:00
|
|
|
typedef INT_PTR (CALLBACK *FARPROC)();
|
|
|
|
typedef INT_PTR (CALLBACK *NEARPROC)();
|
|
|
|
typedef INT_PTR (CALLBACK *PROC)();
|
1999-03-14 17:35:05 +01:00
|
|
|
|
1999-02-12 14:44:38 +01:00
|
|
|
|
1999-03-14 17:35:05 +01:00
|
|
|
/* Macros to split words and longs. */
|
|
|
|
|
2005-08-23 11:36:34 +02:00
|
|
|
#define LOBYTE(w) ((BYTE)((DWORD_PTR)(w) & 0xFF))
|
|
|
|
#define HIBYTE(w) ((BYTE)((DWORD_PTR)(w) >> 8))
|
1999-03-14 17:35:05 +01:00
|
|
|
|
2005-08-23 11:36:34 +02:00
|
|
|
#define LOWORD(l) ((WORD)((DWORD_PTR)(l) & 0xFFFF))
|
|
|
|
#define HIWORD(l) ((WORD)((DWORD_PTR)(l) >> 16))
|
1999-03-14 17:35:05 +01:00
|
|
|
|
2005-08-23 11:36:34 +02:00
|
|
|
#define MAKEWORD(low,high) ((WORD)(((BYTE)((DWORD_PTR)(low) & 0xFF)) | ((WORD)((BYTE)((DWORD_PTR)(high) & 0xFF))) << 8))
|
|
|
|
#define MAKELONG(low,high) ((LONG)(((WORD)((DWORD_PTR)(low) & 0xFFFF)) | ((DWORD)((WORD)((DWORD_PTR)(high) & 0xFFFF))) << 16))
|
1999-03-14 17:35:05 +01:00
|
|
|
|
2000-03-25 22:44:35 +01:00
|
|
|
/* min and max macros */
|
2001-05-07 22:14:00 +02:00
|
|
|
#ifndef NOMINMAX
|
1999-07-10 15:16:29 +02:00
|
|
|
#ifndef max
|
2000-03-25 22:44:35 +01:00
|
|
|
#define max(a,b) (((a) > (b)) ? (a) : (b))
|
1999-07-10 15:16:29 +02:00
|
|
|
#endif
|
|
|
|
#ifndef min
|
2000-03-25 22:44:35 +01:00
|
|
|
#define min(a,b) (((a) < (b)) ? (a) : (b))
|
1999-07-10 15:16:29 +02:00
|
|
|
#endif
|
2001-05-07 22:14:00 +02:00
|
|
|
#endif /* NOMINMAX */
|
1999-03-14 17:35:05 +01:00
|
|
|
|
2002-09-12 22:43:24 +02:00
|
|
|
#ifdef MAX_PATH /* Work-around for Mingw */
|
|
|
|
#undef MAX_PATH
|
|
|
|
#endif /* MAX_PATH */
|
|
|
|
|
2002-05-01 20:13:18 +02:00
|
|
|
#define MAX_PATH 260
|
1999-03-14 17:35:05 +01:00
|
|
|
#define HFILE_ERROR ((HFILE)-1)
|
1999-02-09 16:46:25 +01:00
|
|
|
|
1999-03-14 17:35:05 +01:00
|
|
|
/* The SIZE structure */
|
|
|
|
typedef struct tagSIZE
|
|
|
|
{
|
2000-09-19 04:43:00 +02:00
|
|
|
LONG cx;
|
|
|
|
LONG cy;
|
1999-03-14 17:35:05 +01:00
|
|
|
} SIZE, *PSIZE, *LPSIZE;
|
|
|
|
|
|
|
|
typedef SIZE SIZEL, *PSIZEL, *LPSIZEL;
|
|
|
|
|
|
|
|
/* The POINT structure */
|
|
|
|
typedef struct tagPOINT
|
|
|
|
{
|
|
|
|
LONG x;
|
|
|
|
LONG y;
|
|
|
|
} POINT, *PPOINT, *LPPOINT;
|
1999-02-13 10:13:49 +01:00
|
|
|
|
|
|
|
typedef struct _POINTL
|
|
|
|
{
|
1999-03-14 17:35:05 +01:00
|
|
|
LONG x;
|
|
|
|
LONG y;
|
2004-06-01 21:45:59 +02:00
|
|
|
} POINTL, *PPOINTL;
|
1999-02-13 10:13:49 +01:00
|
|
|
|
1999-03-14 17:35:05 +01:00
|
|
|
/* The POINTS structure */
|
|
|
|
|
|
|
|
typedef struct tagPOINTS
|
|
|
|
{
|
2005-06-17 11:50:48 +02:00
|
|
|
#ifdef WORDS_BIGENDIAN
|
|
|
|
SHORT y;
|
|
|
|
SHORT x;
|
|
|
|
#else
|
2000-09-27 00:20:14 +02:00
|
|
|
SHORT x;
|
|
|
|
SHORT y;
|
2005-06-17 11:50:48 +02:00
|
|
|
#endif
|
1999-03-14 17:35:05 +01:00
|
|
|
} POINTS, *PPOINTS, *LPPOINTS;
|
|
|
|
|
2006-08-23 09:12:47 +02:00
|
|
|
typedef struct _FILETIME {
|
|
|
|
#ifdef WORDS_BIGENDIAN
|
|
|
|
DWORD dwHighDateTime;
|
|
|
|
DWORD dwLowDateTime;
|
|
|
|
#else
|
|
|
|
DWORD dwLowDateTime;
|
|
|
|
DWORD dwHighDateTime;
|
|
|
|
#endif
|
|
|
|
} FILETIME, *PFILETIME, *LPFILETIME;
|
|
|
|
#define _FILETIME_
|
|
|
|
|
1999-03-14 17:35:05 +01:00
|
|
|
/* The RECT structure */
|
|
|
|
typedef struct tagRECT
|
|
|
|
{
|
2003-01-08 22:09:25 +01:00
|
|
|
LONG left;
|
|
|
|
LONG top;
|
|
|
|
LONG right;
|
|
|
|
LONG bottom;
|
1999-03-14 17:35:05 +01:00
|
|
|
} RECT, *PRECT, *LPRECT;
|
|
|
|
typedef const RECT *LPCRECT;
|
|
|
|
|
2004-06-25 03:18:10 +02:00
|
|
|
typedef struct _RECTL
|
1999-03-14 17:35:05 +01:00
|
|
|
{
|
|
|
|
LONG left;
|
2001-10-08 22:31:59 +02:00
|
|
|
LONG top;
|
1999-03-14 17:35:05 +01:00
|
|
|
LONG right;
|
|
|
|
LONG bottom;
|
|
|
|
} RECTL, *PRECTL, *LPRECTL;
|
|
|
|
|
|
|
|
typedef const RECTL *LPCRECTL;
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
1999-02-13 10:13:49 +01:00
|
|
|
|
2004-09-20 21:13:16 +02:00
|
|
|
#endif /* _WINDEF_ */
|