1996-04-14 15:21:20 +02:00
|
|
|
/*
|
|
|
|
* Win32 definitions for Windows NT
|
|
|
|
*
|
|
|
|
* 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
|
1996-04-14 15:21:20 +02:00
|
|
|
*/
|
|
|
|
|
2004-11-19 18:59:41 +01:00
|
|
|
#ifndef _WINNT_
|
|
|
|
#define _WINNT_
|
1996-04-14 15:21:20 +02:00
|
|
|
|
2003-08-28 23:43:34 +02:00
|
|
|
#include <basetsd.h>
|
2006-11-26 09:03:25 +01:00
|
|
|
#include <guiddef.h>
|
1997-01-01 18:29:55 +01:00
|
|
|
|
2000-04-24 20:02:02 +02:00
|
|
|
#ifndef RC_INVOKED
|
2000-11-08 06:03:15 +01:00
|
|
|
#include <ctype.h>
|
2000-12-19 05:50:49 +01:00
|
|
|
#include <stddef.h>
|
2001-04-11 01:23:31 +02:00
|
|
|
#include <string.h>
|
2000-04-24 20:02:02 +02:00
|
|
|
#endif
|
|
|
|
|
2007-02-09 12:22:34 +01:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2007-11-07 12:28:59 +01:00
|
|
|
#ifdef _NTSYSTEM_
|
|
|
|
#define NTSYSAPI
|
|
|
|
#else
|
|
|
|
#define NTSYSAPI DECLSPEC_IMPORT
|
|
|
|
#endif
|
|
|
|
|
2002-12-10 23:56:43 +01:00
|
|
|
#define NTAPI __stdcall
|
2000-12-15 22:31:03 +01:00
|
|
|
|
2007-11-07 12:31:16 +01:00
|
|
|
#ifndef MIDL_PASS
|
2003-12-13 01:02:31 +01:00
|
|
|
# if defined(_MSC_VER)
|
|
|
|
# define DECLSPEC_IMPORT __declspec(dllimport)
|
2008-03-04 03:49:02 +01:00
|
|
|
# elif defined(__MINGW32__) || defined(__CYGWIN__)
|
2003-12-13 01:02:31 +01:00
|
|
|
# define DECLSPEC_IMPORT __attribute__((dllimport))
|
|
|
|
# else
|
2007-11-07 12:31:16 +01:00
|
|
|
# define DECLSPEC_IMPORT DECLSPEC_HIDDEN
|
2003-12-13 01:02:31 +01:00
|
|
|
# endif
|
2002-09-10 02:21:01 +02:00
|
|
|
#else
|
|
|
|
# define DECLSPEC_IMPORT
|
|
|
|
#endif
|
|
|
|
|
2002-04-29 20:37:36 +02:00
|
|
|
#ifndef DECLSPEC_NORETURN
|
2003-09-30 02:33:47 +02:00
|
|
|
# if defined(_MSC_VER) && (_MSC_VER >= 1200) && !defined(MIDL_PASS)
|
2002-04-29 20:37:36 +02:00
|
|
|
# define DECLSPEC_NORETURN __declspec(noreturn)
|
2002-10-01 20:07:37 +02:00
|
|
|
# elif defined(__GNUC__)
|
|
|
|
# define DECLSPEC_NORETURN __attribute__((noreturn))
|
2002-04-29 20:37:36 +02:00
|
|
|
# else
|
|
|
|
# define DECLSPEC_NORETURN
|
|
|
|
# endif
|
|
|
|
#endif
|
2002-09-10 02:21:01 +02:00
|
|
|
|
|
|
|
#ifndef DECLSPEC_ALIGN
|
2003-09-30 02:33:47 +02:00
|
|
|
# if defined(_MSC_VER) && (_MSC_VER >= 1300) && !defined(MIDL_PASS)
|
2002-10-01 20:07:37 +02:00
|
|
|
# define DECLSPEC_ALIGN(x) __declspec(align(x))
|
|
|
|
# elif defined(__GNUC__)
|
|
|
|
# define DECLSPEC_ALIGN(x) __attribute__((aligned(x)))
|
2002-09-10 02:21:01 +02:00
|
|
|
# else
|
|
|
|
# define DECLSPEC_ALIGN(x)
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef DECLSPEC_CACHEALIGN
|
|
|
|
# define DECLSPEC_CACHEALIGN DECLSPEC_ALIGN(128)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef DECLSPEC_UUID
|
2003-09-30 02:33:47 +02:00
|
|
|
# if defined(_MSC_VER) && (_MSC_VER >= 1100) && defined (__cplusplus)
|
2002-10-01 20:07:37 +02:00
|
|
|
# define DECLSPEC_UUID(x) __declspec(uuid(x))
|
2002-09-10 02:21:01 +02:00
|
|
|
# else
|
|
|
|
# define DECLSPEC_UUID(x)
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef DECLSPEC_NOVTABLE
|
2003-09-30 02:33:47 +02:00
|
|
|
# if defined(_MSC_VER) && (_MSC_VER >= 1100) && defined(__cplusplus)
|
2002-10-01 20:07:37 +02:00
|
|
|
# define DECLSPEC_NOVTABLE __declspec(novtable)
|
2002-09-10 02:21:01 +02:00
|
|
|
# else
|
|
|
|
# define DECLSPEC_NOVTABLE
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef DECLSPEC_SELECTANY
|
2003-09-30 02:33:47 +02:00
|
|
|
#if defined(_MSC_VER) && (_MSC_VER >= 1100)
|
2002-10-01 20:07:37 +02:00
|
|
|
#define DECLSPEC_SELECTANY __declspec(selectany)
|
2002-09-10 02:21:01 +02:00
|
|
|
#else
|
|
|
|
#define DECLSPEC_SELECTANY
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef NOP_FUNCTION
|
2003-09-30 02:33:47 +02:00
|
|
|
# if defined(_MSC_VER) && (_MSC_VER >= 1210)
|
2002-09-10 02:21:01 +02:00
|
|
|
# define NOP_FUNCTION __noop
|
|
|
|
# else
|
|
|
|
# define NOP_FUNCTION (void)0
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef DECLSPEC_ADDRSAFE
|
2003-09-30 02:33:47 +02:00
|
|
|
# if defined(_MSC_VER) && (_MSC_VER >= 1200) && (defined(_M_ALPHA) || defined(_M_AXP64))
|
2002-10-01 20:07:37 +02:00
|
|
|
# define DECLSPEC_ADDRSAFE __declspec(address_safe)
|
2002-09-10 02:21:01 +02:00
|
|
|
# else
|
|
|
|
# define DECLSPEC_ADDRSAFE
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef FORCEINLINE
|
2003-09-30 02:33:47 +02:00
|
|
|
# if defined(_MSC_VER) && (_MSC_VER >= 1200)
|
2002-09-10 02:21:01 +02:00
|
|
|
# define FORCEINLINE __forceinline
|
2002-10-01 20:07:37 +02:00
|
|
|
# elif defined(__GNUC__) && ((__GNUC__ > 3) || ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 2)))
|
2010-05-07 22:38:32 +02:00
|
|
|
# define FORCEINLINE inline __attribute__((always_inline))
|
2002-09-10 02:21:01 +02:00
|
|
|
# else
|
2002-10-01 20:07:37 +02:00
|
|
|
# define FORCEINLINE inline
|
2002-09-10 02:21:01 +02:00
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef DECLSPEC_DEPRECATED
|
2003-09-30 02:33:47 +02:00
|
|
|
# if defined(_MSC_VER) && (_MSC_VER >= 1300) && !defined(MIDL_PASS)
|
2002-10-01 20:07:37 +02:00
|
|
|
# define DECLSPEC_DEPRECATED __declspec(deprecated)
|
|
|
|
# define DEPRECATE_SUPPORTED
|
|
|
|
# elif defined(__GNUC__) && ((__GNUC__ > 3) || ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 2)))
|
|
|
|
# define DECLSPEC_DEPRECATED __attribute__((deprecated))
|
2002-09-10 02:21:01 +02:00
|
|
|
# define DEPRECATE_SUPPORTED
|
|
|
|
# else
|
|
|
|
# define DECLSPEC_DEPRECATED
|
|
|
|
# undef DEPRECATE_SUPPORTED
|
|
|
|
# endif
|
|
|
|
#endif
|
2002-04-29 20:37:36 +02:00
|
|
|
|
2005-10-30 20:10:35 +01:00
|
|
|
/* a couple of useful Wine extensions */
|
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
# define DECLSPEC_EXPORT __declspec(dllexport)
|
|
|
|
#elif defined(__MINGW32__)
|
|
|
|
# define DECLSPEC_EXPORT __attribute__((dllexport))
|
2016-03-05 10:49:04 +01:00
|
|
|
#elif defined(__GNUC__) && ((__GNUC__ > 3) || ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3))) && !defined(__sun)
|
2005-10-30 20:10:35 +01:00
|
|
|
# define DECLSPEC_EXPORT __attribute__((visibility ("default")))
|
|
|
|
#else
|
|
|
|
# define DECLSPEC_EXPORT
|
|
|
|
#endif
|
|
|
|
|
2016-03-05 10:49:04 +01:00
|
|
|
#if defined(_MSC_VER) || defined(__MINGW32__) || defined(__CYGWIN__) || defined(__sun)
|
2008-03-04 03:49:02 +01:00
|
|
|
# define DECLSPEC_HIDDEN
|
|
|
|
#elif defined(__GNUC__) && ((__GNUC__ > 3) || ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)))
|
2005-10-30 20:10:35 +01:00
|
|
|
# define DECLSPEC_HIDDEN __attribute__((visibility ("hidden")))
|
|
|
|
#else
|
|
|
|
# define DECLSPEC_HIDDEN
|
|
|
|
#endif
|
|
|
|
|
2008-09-04 13:39:58 +02:00
|
|
|
#if defined(__GNUC__) && ((__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 3)))
|
|
|
|
#define __WINE_ALLOC_SIZE(x) __attribute__((__alloc_size__(x)))
|
|
|
|
#else
|
|
|
|
#define __WINE_ALLOC_SIZE(x)
|
|
|
|
#endif
|
|
|
|
|
2000-12-15 22:31:03 +01:00
|
|
|
/* Anonymous union/struct handling */
|
|
|
|
|
2003-01-07 21:36:20 +01:00
|
|
|
#ifndef NONAMELESSSTRUCT
|
|
|
|
# ifdef __GNUC__
|
|
|
|
/* Anonymous struct support starts with gcc 2.96 or gcc/g++ 3.x */
|
|
|
|
# if (__GNUC__ < 2) || ((__GNUC__ == 2) && (defined(__cplusplus) || (__GNUC_MINOR__ < 96)))
|
|
|
|
# define NONAMELESSSTRUCT
|
|
|
|
# endif
|
|
|
|
# elif defined(__SUNPRO_C) || defined(__SUNPRO_CC)
|
2000-12-15 22:31:03 +01:00
|
|
|
# define NONAMELESSSTRUCT
|
|
|
|
# endif
|
2003-01-07 21:36:20 +01:00
|
|
|
#endif /* NONAMELESSSTRUCT */
|
|
|
|
|
|
|
|
#ifndef NONAMELESSUNION
|
|
|
|
# ifdef __GNUC__
|
|
|
|
/* Anonymous unions support starts with gcc 2.96/g++ 2.95 */
|
|
|
|
# if (__GNUC__ < 2) || ((__GNUC__ == 2) && ((__GNUC_MINOR__ < 95) || ((__GNUC_MINOR__ == 95) && !defined(__cplusplus))))
|
|
|
|
# define NONAMELESSUNION
|
|
|
|
# endif
|
|
|
|
# elif defined(__SUNPRO_C) || defined(__SUNPRO_CC)
|
2000-12-15 22:31:03 +01:00
|
|
|
# define NONAMELESSUNION
|
|
|
|
# endif
|
2003-01-07 21:36:20 +01:00
|
|
|
#endif /* NONAMELESSUNION */
|
2000-12-15 22:31:03 +01:00
|
|
|
|
2011-05-23 12:32:19 +02:00
|
|
|
#undef DUMMYSTRUCTNAME
|
|
|
|
#undef DUMMYSTRUCTNAME1
|
|
|
|
#undef DUMMYSTRUCTNAME2
|
|
|
|
#undef DUMMYSTRUCTNAME3
|
|
|
|
#undef DUMMYSTRUCTNAME4
|
|
|
|
#undef DUMMYSTRUCTNAME5
|
2000-12-15 22:31:03 +01:00
|
|
|
#ifndef NONAMELESSSTRUCT
|
|
|
|
#define DUMMYSTRUCTNAME
|
|
|
|
#define DUMMYSTRUCTNAME1
|
|
|
|
#define DUMMYSTRUCTNAME2
|
|
|
|
#define DUMMYSTRUCTNAME3
|
|
|
|
#define DUMMYSTRUCTNAME4
|
|
|
|
#define DUMMYSTRUCTNAME5
|
|
|
|
#else /* !defined(NONAMELESSSTRUCT) */
|
|
|
|
#define DUMMYSTRUCTNAME s
|
|
|
|
#define DUMMYSTRUCTNAME1 s1
|
|
|
|
#define DUMMYSTRUCTNAME2 s2
|
|
|
|
#define DUMMYSTRUCTNAME3 s3
|
|
|
|
#define DUMMYSTRUCTNAME4 s4
|
|
|
|
#define DUMMYSTRUCTNAME5 s5
|
|
|
|
#endif /* !defined(NONAMELESSSTRUCT) */
|
|
|
|
|
2011-05-23 12:32:19 +02:00
|
|
|
#undef DUMMYUNIONNAME
|
|
|
|
#undef DUMMYUNIONNAME1
|
|
|
|
#undef DUMMYUNIONNAME2
|
|
|
|
#undef DUMMYUNIONNAME3
|
|
|
|
#undef DUMMYUNIONNAME4
|
|
|
|
#undef DUMMYUNIONNAME5
|
|
|
|
#undef DUMMYUNIONNAME6
|
|
|
|
#undef DUMMYUNIONNAME7
|
|
|
|
#undef DUMMYUNIONNAME8
|
2000-12-15 22:31:03 +01:00
|
|
|
#ifndef NONAMELESSUNION
|
|
|
|
#define DUMMYUNIONNAME
|
|
|
|
#define DUMMYUNIONNAME1
|
|
|
|
#define DUMMYUNIONNAME2
|
|
|
|
#define DUMMYUNIONNAME3
|
|
|
|
#define DUMMYUNIONNAME4
|
|
|
|
#define DUMMYUNIONNAME5
|
|
|
|
#define DUMMYUNIONNAME6
|
|
|
|
#define DUMMYUNIONNAME7
|
|
|
|
#define DUMMYUNIONNAME8
|
|
|
|
#else /* !defined(NONAMELESSUNION) */
|
|
|
|
#define DUMMYUNIONNAME u
|
|
|
|
#define DUMMYUNIONNAME1 u1
|
|
|
|
#define DUMMYUNIONNAME2 u2
|
|
|
|
#define DUMMYUNIONNAME3 u3
|
|
|
|
#define DUMMYUNIONNAME4 u4
|
|
|
|
#define DUMMYUNIONNAME5 u5
|
|
|
|
#define DUMMYUNIONNAME6 u6
|
|
|
|
#define DUMMYUNIONNAME7 u7
|
|
|
|
#define DUMMYUNIONNAME8 u8
|
|
|
|
#endif /* !defined(NONAMELESSUNION) */
|
|
|
|
|
2012-05-12 16:13:57 +02:00
|
|
|
#undef __C89_NAMELESS
|
|
|
|
#undef __C89_NAMELESSSTRUCTNAME
|
|
|
|
#undef __C89_NAMELESSSTRUCTNAME1
|
|
|
|
#undef __C89_NAMELESSSTRUCTNAME2
|
|
|
|
#undef __C89_NAMELESSSTRUCTNAME3
|
|
|
|
#undef __C89_NAMELESSSTRUCTNAME4
|
|
|
|
#undef __C89_NAMELESSSTRUCTNAME5
|
|
|
|
#undef __C89_NAMELESSUNIONNAME
|
|
|
|
#undef __C89_NAMELESSUNIONNAME1
|
|
|
|
#undef __C89_NAMELESSUNIONNAME2
|
|
|
|
#undef __C89_NAMELESSUNIONNAME3
|
|
|
|
#undef __C89_NAMELESSUNIONNAME4
|
|
|
|
#undef __C89_NAMELESSUNIONNAME5
|
|
|
|
#undef __C89_NAMELESSUNIONNAME6
|
|
|
|
#undef __C89_NAMELESSUNIONNAME7
|
|
|
|
#undef __C89_NAMELESSUNIONNAME8
|
|
|
|
|
|
|
|
#if !defined(__WINESRC__) && !defined(WINE_NO_NAMELESS_EXTENSION)
|
|
|
|
# ifdef __GNUC__
|
|
|
|
/* Anonymous structs support starts with gcc 2.96/g++ 2.95 */
|
|
|
|
# if (__GNUC__ > 2) || ((__GNUC__ == 2) && ((__GNUC_MINOR__ > 95) || ((__GNUC_MINOR__ == 95) && defined(__cplusplus))))
|
|
|
|
# define __C89_NAMELESS __extension__
|
2010-12-23 16:05:29 +01:00
|
|
|
# endif
|
2012-05-12 16:13:57 +02:00
|
|
|
# elif defined(_MSC_VER)
|
|
|
|
# define __C89_NAMELESS
|
2010-12-23 16:05:29 +01:00
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2011-01-12 23:25:03 +01:00
|
|
|
#ifdef __C89_NAMELESS
|
|
|
|
# define __C89_NAMELESSSTRUCTNAME
|
2012-05-12 16:13:57 +02:00
|
|
|
# define __C89_NAMELESSSTRUCTNAME1
|
|
|
|
# define __C89_NAMELESSSTRUCTNAME2
|
|
|
|
# define __C89_NAMELESSSTRUCTNAME3
|
|
|
|
# define __C89_NAMELESSSTRUCTNAME4
|
|
|
|
# define __C89_NAMELESSSTRUCTNAME5
|
2011-01-12 23:25:03 +01:00
|
|
|
# define __C89_NAMELESSUNIONNAME
|
2012-05-12 16:13:57 +02:00
|
|
|
# define __C89_NAMELESSUNIONNAME1
|
|
|
|
# define __C89_NAMELESSUNIONNAME2
|
|
|
|
# define __C89_NAMELESSUNIONNAME3
|
|
|
|
# define __C89_NAMELESSUNIONNAME4
|
|
|
|
# define __C89_NAMELESSUNIONNAME5
|
|
|
|
# define __C89_NAMELESSUNIONNAME6
|
|
|
|
# define __C89_NAMELESSUNIONNAME7
|
|
|
|
# define __C89_NAMELESSUNIONNAME8
|
2011-01-12 23:25:03 +01:00
|
|
|
#else
|
|
|
|
# define __C89_NAMELESS
|
|
|
|
# define __C89_NAMELESSSTRUCTNAME DUMMYSTRUCTNAME
|
2012-05-12 16:13:57 +02:00
|
|
|
# define __C89_NAMELESSSTRUCTNAME1 DUMMYSTRUCTNAME1
|
|
|
|
# define __C89_NAMELESSSTRUCTNAME2 DUMMYSTRUCTNAME2
|
|
|
|
# define __C89_NAMELESSSTRUCTNAME3 DUMMYSTRUCTNAME3
|
|
|
|
# define __C89_NAMELESSSTRUCTNAME4 DUMMYSTRUCTNAME4
|
|
|
|
# define __C89_NAMELESSSTRUCTNAME5 DUMMYSTRUCTNAME5
|
2011-01-12 23:25:03 +01:00
|
|
|
# define __C89_NAMELESSUNIONNAME DUMMYUNIONNAME
|
2012-05-12 16:13:57 +02:00
|
|
|
# define __C89_NAMELESSUNIONNAME1 DUMMYUNIONNAME1
|
|
|
|
# define __C89_NAMELESSUNIONNAME2 DUMMYUNIONNAME2
|
|
|
|
# define __C89_NAMELESSUNIONNAME3 DUMMYUNIONNAME3
|
|
|
|
# define __C89_NAMELESSUNIONNAME4 DUMMYUNIONNAME4
|
|
|
|
# define __C89_NAMELESSUNIONNAME5 DUMMYUNIONNAME5
|
|
|
|
# define __C89_NAMELESSUNIONNAME6 DUMMYUNIONNAME6
|
|
|
|
# define __C89_NAMELESSUNIONNAME7 DUMMYUNIONNAME7
|
|
|
|
# define __C89_NAMELESSUNIONNAME8 DUMMYUNIONNAME8
|
2010-12-23 16:05:29 +01:00
|
|
|
#endif
|
|
|
|
|
2002-10-02 03:23:33 +02:00
|
|
|
/* C99 restrict support */
|
|
|
|
|
|
|
|
#if defined(ENABLE_RESTRICTED) && !defined(MIDL_PASS) && !defined(RC_INVOKED)
|
|
|
|
# if defined(_MSC_VER) && defined(_M_MRX000)
|
|
|
|
# define RESTRICTED_POINTER __restrict
|
|
|
|
# elif defined(__GNUC__) && ((__GNUC__ > 2) || ((__GNUC__ == 2) && (__GNUC_MINOR__ >= 95)))
|
|
|
|
# define RESTRICTED_POINTER __restrict
|
|
|
|
# else
|
|
|
|
# define RESTRICTED_POINTER
|
|
|
|
# endif
|
|
|
|
#else
|
|
|
|
# define RESTRICTED_POINTER
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* C99 unaligned support */
|
|
|
|
|
2008-12-09 17:56:16 +01:00
|
|
|
#ifndef UNALIGNED
|
2002-10-02 03:23:33 +02:00
|
|
|
#if defined(_MSC_VER) && (defined(_M_MRX000) || defined(_M_ALPHA) || defined(_M_PPC) || defined(_M_IA64) || defined(_M_AMD64))
|
|
|
|
# define UNALIGNED __unaligned
|
|
|
|
# ifdef _WIN64
|
|
|
|
# define UNALIGNED64 __unaligned
|
|
|
|
# else
|
|
|
|
# define UNALIGNED64
|
|
|
|
# endif
|
|
|
|
#else
|
|
|
|
# define UNALIGNED
|
|
|
|
# define UNALIGNED64
|
|
|
|
#endif
|
2008-12-09 17:56:16 +01:00
|
|
|
#endif
|
2002-10-02 03:23:33 +02:00
|
|
|
|
|
|
|
/* Alignment macros */
|
|
|
|
|
|
|
|
#if defined(_WIN64) || (defined(_MSC_VER) && defined(_M_ALPHA)) || defined(__alpha__)
|
|
|
|
#define MAX_NATURAL_ALIGNMENT sizeof(ULONGLONG)
|
|
|
|
#define MEMORY_ALLOCATION_ALIGNMENT 16
|
|
|
|
#else
|
|
|
|
#define MAX_NATURAL_ALIGNMENT sizeof(DWORD)
|
|
|
|
#define MEMORY_ALLOCATION_ALIGNMENT 8
|
|
|
|
#endif
|
|
|
|
|
2003-09-30 02:33:47 +02:00
|
|
|
#if defined(_MSC_VER) && (_MSC_VER >= 1300) && defined(__cplusplus)
|
2002-10-02 03:23:33 +02:00
|
|
|
# define TYPE_ALIGNMENT(t) __alignof(t)
|
|
|
|
#elif defined(__GNUC__)
|
|
|
|
# define TYPE_ALIGNMENT(t) __alignof__(t)
|
|
|
|
#else
|
|
|
|
# define TYPE_ALIGNMENT(t) FIELD_OFFSET(struct { char x; t test; }, test)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef _WIN64
|
|
|
|
# define PROBE_ALIGNMENT(_s) \
|
|
|
|
(TYPE_ALIGNMENT(_s) > TYPE_ALIGNMENT(DWORD) ? \
|
|
|
|
TYPE_ALIGNMENT(_s) : TYPE_ALIGNMENT(DWORD))
|
|
|
|
# define PROBE_ALIGNMENT32(_s) TYPE_ALIGNMENT(DWORD)
|
|
|
|
#else
|
|
|
|
# define PROBE_ALIGNMENT(_s) TYPE_ALIGNMENT(DWORD)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Compile time assertion */
|
|
|
|
|
|
|
|
#if defined(_MSC_VER)
|
|
|
|
# define C_ASSERT(e) typedef char __C_ASSERT__[(e)?1:-1]
|
2008-02-15 16:44:19 +01:00
|
|
|
#else
|
2009-05-13 10:32:03 +02:00
|
|
|
# define C_ASSERT(e) extern void __C_ASSERT__(int [(e)?1:-1])
|
2002-10-02 03:23:33 +02:00
|
|
|
#endif
|
2000-12-15 22:31:03 +01:00
|
|
|
|
2004-02-27 22:25:12 +01:00
|
|
|
/* Eliminate Microsoft C/C++ compiler warning 4715 */
|
2009-11-20 22:08:43 +01:00
|
|
|
#if defined(_MSC_VER) && (_MSC_VER > 1200)
|
2004-02-27 22:25:12 +01:00
|
|
|
# define DEFAULT_UNREACHABLE default: __assume(0)
|
2013-03-13 10:43:46 +01:00
|
|
|
#elif defined(__clang__) || (defined(__GNUC__) && ((__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 5))))
|
|
|
|
# define DEFAULT_UNREACHABLE default: __builtin_unreachable()
|
2004-02-27 22:25:12 +01:00
|
|
|
#else
|
2013-03-13 10:43:46 +01:00
|
|
|
# define DEFAULT_UNREACHABLE default:
|
2004-02-27 22:25:12 +01:00
|
|
|
#endif
|
|
|
|
|
2002-04-02 04:57:50 +02:00
|
|
|
/* Error Masks */
|
|
|
|
#define APPLICATION_ERROR_MASK 0x20000000
|
|
|
|
#define ERROR_SEVERITY_SUCCESS 0x00000000
|
|
|
|
#define ERROR_SEVERITY_INFORMATIONAL 0x40000000
|
|
|
|
#define ERROR_SEVERITY_WARNING 0x80000000
|
|
|
|
#define ERROR_SEVERITY_ERROR 0xC0000000
|
|
|
|
|
2009-11-11 12:34:46 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
#define DEFINE_ENUM_FLAG_OPERATORS(ENUMTYPE) \
|
|
|
|
extern "C++" { \
|
|
|
|
inline ENUMTYPE operator | (ENUMTYPE a, ENUMTYPE b) { return ENUMTYPE(((int)a)|((int)b)); } \
|
|
|
|
inline ENUMTYPE operator |= (ENUMTYPE &a, ENUMTYPE b) { return (ENUMTYPE &)(((int &)a) |= ((int)b)); } \
|
|
|
|
inline ENUMTYPE operator & (ENUMTYPE a, ENUMTYPE b) { return ENUMTYPE(((int)a)&((int)b)); } \
|
|
|
|
inline ENUMTYPE operator &= (ENUMTYPE &a, ENUMTYPE b) { return (ENUMTYPE &)(((int &)a) &= ((int)b)); } \
|
|
|
|
inline ENUMTYPE operator ~ (ENUMTYPE a) { return (ENUMTYPE)(~((int)a)); } \
|
|
|
|
inline ENUMTYPE operator ^ (ENUMTYPE a, ENUMTYPE b) { return ENUMTYPE(((int)a)^((int)b)); } \
|
|
|
|
inline ENUMTYPE operator ^= (ENUMTYPE &a, ENUMTYPE b) { return (ENUMTYPE &)(((int &)a) ^= ((int)b)); } \
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
#define DEFINE_ENUM_FLAG_OPERATORS(ENUMTYPE) /* */
|
|
|
|
#endif
|
|
|
|
|
2000-12-19 03:09:52 +01:00
|
|
|
/* Microsoft's macros for declaring functions */
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
# define EXTERN_C extern "C"
|
|
|
|
#else
|
|
|
|
# define EXTERN_C extern
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define STDMETHODCALLTYPE __stdcall
|
|
|
|
#define STDMETHODVCALLTYPE __cdecl
|
|
|
|
#define STDAPICALLTYPE __stdcall
|
|
|
|
#define STDAPIVCALLTYPE __cdecl
|
|
|
|
|
|
|
|
#define STDAPI EXTERN_C HRESULT STDAPICALLTYPE
|
|
|
|
#define STDAPI_(type) EXTERN_C type STDAPICALLTYPE
|
|
|
|
#define STDMETHODIMP HRESULT STDMETHODCALLTYPE
|
|
|
|
#define STDMETHODIMP_(type) type STDMETHODCALLTYPE
|
|
|
|
#define STDAPIV EXTERN_C HRESULT STDAPIVCALLTYPE
|
|
|
|
#define STDAPIV_(type) EXTERN_C type STDAPIVCALLTYPE
|
|
|
|
#define STDMETHODIMPV HRESULT STDMETHODVCALLTYPE
|
|
|
|
#define STDMETHODIMPV_(type) type STDMETHODVCALLTYPE
|
|
|
|
|
2000-12-15 22:31:03 +01:00
|
|
|
/* Define the basic types */
|
|
|
|
#ifndef VOID
|
|
|
|
#define VOID void
|
|
|
|
#endif
|
2002-12-10 23:56:43 +01:00
|
|
|
typedef VOID *PVOID;
|
2005-07-06 12:32:46 +02:00
|
|
|
typedef VOID *PVOID64;
|
2000-12-15 22:31:03 +01:00
|
|
|
typedef BYTE BOOLEAN, *PBOOLEAN;
|
|
|
|
typedef char CHAR, *PCHAR;
|
|
|
|
typedef short SHORT, *PSHORT;
|
2006-12-20 14:26:08 +01:00
|
|
|
#ifdef _MSC_VER
|
2002-12-10 23:56:43 +01:00
|
|
|
typedef long LONG, *PLONG;
|
2006-09-29 01:18:35 +02:00
|
|
|
#else
|
|
|
|
typedef int LONG, *PLONG;
|
2005-09-22 12:58:04 +02:00
|
|
|
#endif
|
2000-12-15 22:31:03 +01:00
|
|
|
|
2000-12-19 05:50:49 +01:00
|
|
|
/* Some systems might have wchar_t, but we really need 16 bit characters */
|
|
|
|
#ifdef WINE_UNICODE_NATIVE
|
|
|
|
typedef wchar_t WCHAR, *PWCHAR;
|
|
|
|
#else
|
|
|
|
typedef unsigned short WCHAR, *PWCHAR;
|
|
|
|
#endif
|
|
|
|
|
2012-09-24 16:33:08 +02:00
|
|
|
typedef ULONG UCSCHAR;
|
|
|
|
#define MIN_UCSCHAR (0)
|
|
|
|
#define MAX_UCSCHAR (0x0010ffff)
|
|
|
|
#define UCSCHAR_INVALID_CHARACTER (0xffffffff)
|
|
|
|
|
2000-12-15 22:31:03 +01:00
|
|
|
/* 'Extended/Wide' numerical types */
|
|
|
|
#ifndef _ULONGLONG_
|
2005-02-18 13:56:35 +01:00
|
|
|
# define _ULONGLONG_
|
|
|
|
# ifdef _MSC_VER
|
|
|
|
typedef signed __int64 LONGLONG, *PLONGLONG;
|
|
|
|
typedef unsigned __int64 ULONGLONG, *PULONGLONG;
|
|
|
|
# else
|
2004-05-04 02:43:02 +02:00
|
|
|
typedef signed __int64 DECLSPEC_ALIGN(8) LONGLONG, *PLONGLONG;
|
|
|
|
typedef unsigned __int64 DECLSPEC_ALIGN(8) ULONGLONG, *PULONGLONG;
|
2005-02-18 13:56:35 +01:00
|
|
|
# endif
|
2000-12-15 22:31:03 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _DWORDLONG_
|
2005-02-18 13:56:35 +01:00
|
|
|
# define _DWORDLONG_
|
|
|
|
# ifdef _MSC_VER
|
|
|
|
typedef ULONGLONG DWORDLONG, *PDWORDLONG;
|
|
|
|
# else
|
|
|
|
typedef ULONGLONG DECLSPEC_ALIGN(8) DWORDLONG, *PDWORDLONG;
|
|
|
|
# endif
|
2000-12-15 22:31:03 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* ANSI string types */
|
2012-09-24 16:33:08 +02:00
|
|
|
typedef CHAR *PCH, *LPCH, *PNZCH;
|
|
|
|
typedef const CHAR *PCCH, *LPCCH, *PCNZCH;
|
2002-12-19 22:12:35 +01:00
|
|
|
typedef CHAR *PSTR, *LPSTR, *NPSTR;
|
2000-12-15 22:31:03 +01:00
|
|
|
typedef const CHAR *PCSTR, *LPCSTR;
|
2011-09-16 01:00:00 +02:00
|
|
|
typedef CHAR *PZZSTR;
|
|
|
|
typedef const CHAR *PCZZSTR;
|
2000-12-15 22:31:03 +01:00
|
|
|
|
|
|
|
/* Unicode string types */
|
2012-09-24 16:33:08 +02:00
|
|
|
typedef const WCHAR *PCWCHAR, *LPCUWCHAR, *PCUWCHAR;
|
2000-12-15 22:31:03 +01:00
|
|
|
typedef WCHAR *PWCH, *LPWCH;
|
|
|
|
typedef const WCHAR *PCWCH, *LPCWCH;
|
2012-09-24 16:33:08 +02:00
|
|
|
typedef WCHAR *PNZWCH, *PUNZWCH;
|
|
|
|
typedef const WCHAR *PCNZWCH, *PCUNZWCH;
|
2002-12-19 22:12:35 +01:00
|
|
|
typedef WCHAR *PWSTR, *LPWSTR, *NWPSTR;
|
2000-12-15 22:31:03 +01:00
|
|
|
typedef const WCHAR *PCWSTR, *LPCWSTR;
|
2012-09-24 16:33:08 +02:00
|
|
|
typedef WCHAR *PZZWSTR, *PUZZWSTR;
|
|
|
|
typedef const WCHAR *PCZZWSTR, *PCUZZWSTR;
|
|
|
|
typedef PWSTR *PZPWSTR;
|
|
|
|
typedef PCWSTR *PZPCWSTR;
|
2000-12-15 22:31:03 +01:00
|
|
|
|
|
|
|
/* Neutral character and string types */
|
2002-06-01 01:06:46 +02:00
|
|
|
/* These are only defined for Winelib, i.e. _not_ defined for
|
|
|
|
* the emulator. The reason is they depend on the UNICODE
|
2000-12-15 22:31:03 +01:00
|
|
|
* macro which only exists in the user's code.
|
|
|
|
*/
|
2008-05-30 10:02:42 +02:00
|
|
|
#ifndef WINE_NO_UNICODE_MACROS
|
2000-12-15 22:31:03 +01:00
|
|
|
# ifdef UNICODE
|
2004-04-05 22:18:22 +02:00
|
|
|
# ifndef _TCHAR_DEFINED
|
2000-12-15 22:31:03 +01:00
|
|
|
typedef WCHAR TCHAR, *PTCHAR;
|
2004-04-05 22:18:22 +02:00
|
|
|
# define _TCHAR_DEFINED
|
|
|
|
#endif
|
2012-09-24 16:33:08 +02:00
|
|
|
typedef LPWCH PTCH, LPTCH;
|
|
|
|
typedef LPCWCH PCTCH, LPCTCH;
|
2000-12-15 22:31:03 +01:00
|
|
|
typedef LPWSTR PTSTR, LPTSTR;
|
|
|
|
typedef LPCWSTR PCTSTR, LPCTSTR;
|
2012-09-24 16:33:08 +02:00
|
|
|
typedef LPWSTR PUTSTR, LPUTSTR;
|
|
|
|
typedef LPCWSTR PCUTSTR, LPCUTSTR;
|
|
|
|
typedef PNZWCH PNZTCH;
|
|
|
|
typedef PUNZWCH PUNZTCH;
|
|
|
|
typedef PCNZWCH PCNZTCH;
|
|
|
|
typedef PCUNZWCH PCUNZTCH;
|
|
|
|
typedef PZZWSTR PZZTSTR;
|
|
|
|
typedef PCZZWSTR PCZZTSTR;
|
|
|
|
typedef PUZZWSTR PUZZTSTR;
|
2012-09-29 18:02:36 +02:00
|
|
|
typedef PCUZZWSTR PCUZZTSTR;
|
2000-12-15 22:31:03 +01:00
|
|
|
# else /* UNICODE */
|
2004-04-05 22:18:22 +02:00
|
|
|
# ifndef _TCHAR_DEFINED
|
2000-12-15 22:31:03 +01:00
|
|
|
typedef CHAR TCHAR, *PTCHAR;
|
2004-04-05 22:18:22 +02:00
|
|
|
# define _TCHAR_DEFINED
|
|
|
|
# endif
|
2012-09-24 16:33:08 +02:00
|
|
|
typedef LPCH PTCH, LPTCH;
|
|
|
|
typedef LPCCH PCTCH, LPCTCH;
|
2000-12-15 22:31:03 +01:00
|
|
|
typedef LPSTR PTSTR, LPTSTR;
|
|
|
|
typedef LPCSTR PCTSTR, LPCTSTR;
|
2012-09-24 16:33:08 +02:00
|
|
|
typedef PNZCH PNZTCH, PUNZTCH;
|
|
|
|
typedef PCNZCH PCNZTCH, PCUNZTCH;
|
|
|
|
typedef PZZSTR PZZTSTR, PUZZTSTR;
|
|
|
|
typedef PCZZSTR PCZZTSTR, PCUZZTSTR;
|
2000-12-15 22:31:03 +01:00
|
|
|
# endif /* UNICODE */
|
2008-05-30 10:02:42 +02:00
|
|
|
#endif /* WINE_NO_UNICODE_MACROS */
|
2000-12-15 22:31:03 +01:00
|
|
|
|
2012-09-24 16:33:08 +02:00
|
|
|
/* UCS string types */
|
|
|
|
typedef UCSCHAR *PUCSCHAR, *PUUCSCHAR;
|
|
|
|
typedef const UCSCHAR *PCUCSCHAR, *PCUUCSCHAR;
|
|
|
|
typedef UCSCHAR *PUCSSTR, *PUUCSSTR;
|
|
|
|
typedef const UCSCHAR *PCUCSSTR, *PCUUCSSTR;
|
|
|
|
|
2000-12-15 22:31:03 +01:00
|
|
|
/* Misc common WIN32 types */
|
2002-08-15 23:57:36 +02:00
|
|
|
typedef char CCHAR;
|
2000-12-15 22:31:03 +01:00
|
|
|
typedef DWORD LCID, *PLCID;
|
|
|
|
typedef WORD LANGID;
|
2001-03-14 00:33:26 +01:00
|
|
|
typedef DWORD EXECUTION_STATE;
|
2007-05-27 13:28:58 +02:00
|
|
|
#ifndef _HRESULT_DEFINED
|
|
|
|
#define _HRESULT_DEFINED
|
|
|
|
typedef LONG HRESULT;
|
|
|
|
#endif
|
2000-12-15 22:31:03 +01:00
|
|
|
|
|
|
|
/* Handle type */
|
|
|
|
|
2002-10-19 19:20:02 +02:00
|
|
|
typedef void *HANDLE;
|
|
|
|
typedef HANDLE *PHANDLE, *LPHANDLE;
|
2000-12-15 22:31:03 +01:00
|
|
|
|
2002-12-10 23:56:43 +01:00
|
|
|
#ifdef STRICT
|
2003-01-24 01:49:32 +01:00
|
|
|
#define DECLARE_HANDLE(a) typedef struct a##__ { int unused; } *a
|
2000-12-15 22:31:03 +01:00
|
|
|
#else /*STRICT*/
|
2003-01-24 01:49:32 +01:00
|
|
|
#define DECLARE_HANDLE(a) typedef HANDLE a
|
2000-12-15 22:31:03 +01:00
|
|
|
#endif /*STRICT*/
|
|
|
|
|
2005-07-27 12:50:40 +02:00
|
|
|
typedef BYTE FCHAR;
|
|
|
|
typedef WORD FSHORT;
|
|
|
|
typedef DWORD FLONG;
|
|
|
|
|
2011-10-26 23:45:45 +02:00
|
|
|
/* Macro to deal with LP64 <=> LLP64 differences in numeric constants with 'l' modifier */
|
|
|
|
#ifndef __MSABI_LONG
|
|
|
|
# if defined(_MSC_VER) || defined(__MINGW32__) || defined(__CYGWIN__)
|
|
|
|
# define __MSABI_LONG(x) x ## l
|
|
|
|
# else
|
|
|
|
# define __MSABI_LONG(x) x
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
1998-11-14 19:24:37 +01:00
|
|
|
/* Defines */
|
|
|
|
|
2003-09-09 21:26:40 +02:00
|
|
|
#ifndef WIN32_NO_STATUS
|
|
|
|
|
2005-11-28 17:32:54 +01:00
|
|
|
#define STATUS_WAIT_0 ((DWORD) 0x00000000)
|
|
|
|
#define STATUS_ABANDONED_WAIT_0 ((DWORD) 0x00000080)
|
|
|
|
#define STATUS_USER_APC ((DWORD) 0x000000C0)
|
|
|
|
#define STATUS_TIMEOUT ((DWORD) 0x00000102)
|
|
|
|
#define STATUS_PENDING ((DWORD) 0x00000103)
|
|
|
|
#define STATUS_SEGMENT_NOTIFICATION ((DWORD) 0x40000005)
|
|
|
|
#define STATUS_GUARD_PAGE_VIOLATION ((DWORD) 0x80000001)
|
|
|
|
#define STATUS_DATATYPE_MISALIGNMENT ((DWORD) 0x80000002)
|
|
|
|
#define STATUS_BREAKPOINT ((DWORD) 0x80000003)
|
|
|
|
#define STATUS_SINGLE_STEP ((DWORD) 0x80000004)
|
|
|
|
#define STATUS_ACCESS_VIOLATION ((DWORD) 0xC0000005)
|
|
|
|
#define STATUS_IN_PAGE_ERROR ((DWORD) 0xC0000006)
|
|
|
|
#define STATUS_INVALID_HANDLE ((DWORD) 0xC0000008)
|
|
|
|
#define STATUS_NO_MEMORY ((DWORD) 0xC0000017)
|
|
|
|
#define STATUS_ILLEGAL_INSTRUCTION ((DWORD) 0xC000001D)
|
|
|
|
#define STATUS_NONCONTINUABLE_EXCEPTION ((DWORD) 0xC0000025)
|
|
|
|
#define STATUS_INVALID_DISPOSITION ((DWORD) 0xC0000026)
|
|
|
|
#define STATUS_ARRAY_BOUNDS_EXCEEDED ((DWORD) 0xC000008C)
|
|
|
|
#define STATUS_FLOAT_DENORMAL_OPERAND ((DWORD) 0xC000008D)
|
|
|
|
#define STATUS_FLOAT_DIVIDE_BY_ZERO ((DWORD) 0xC000008E)
|
|
|
|
#define STATUS_FLOAT_INEXACT_RESULT ((DWORD) 0xC000008F)
|
|
|
|
#define STATUS_FLOAT_INVALID_OPERATION ((DWORD) 0xC0000090)
|
|
|
|
#define STATUS_FLOAT_OVERFLOW ((DWORD) 0xC0000091)
|
|
|
|
#define STATUS_FLOAT_STACK_CHECK ((DWORD) 0xC0000092)
|
|
|
|
#define STATUS_FLOAT_UNDERFLOW ((DWORD) 0xC0000093)
|
|
|
|
#define STATUS_INTEGER_DIVIDE_BY_ZERO ((DWORD) 0xC0000094)
|
|
|
|
#define STATUS_INTEGER_OVERFLOW ((DWORD) 0xC0000095)
|
|
|
|
#define STATUS_PRIVILEGED_INSTRUCTION ((DWORD) 0xC0000096)
|
|
|
|
#define STATUS_STACK_OVERFLOW ((DWORD) 0xC00000FD)
|
|
|
|
#define STATUS_CONTROL_C_EXIT ((DWORD) 0xC000013A)
|
|
|
|
#define STATUS_FLOAT_MULTIPLE_FAULTS ((DWORD) 0xC00002B4)
|
|
|
|
#define STATUS_FLOAT_MULTIPLE_TRAPS ((DWORD) 0xC00002B5)
|
|
|
|
#define STATUS_REG_NAT_CONSUMPTION ((DWORD) 0xC00002C9)
|
|
|
|
#define STATUS_SXS_EARLY_DEACTIVATION ((DWORD) 0xC015000F)
|
|
|
|
#define STATUS_SXS_INVALID_DEACTIVATION ((DWORD) 0xC0150010)
|
2003-09-09 21:26:40 +02:00
|
|
|
|
|
|
|
/* status values for ContinueDebugEvent */
|
2005-11-28 17:32:54 +01:00
|
|
|
#define DBG_EXCEPTION_HANDLED ((DWORD) 0x00010001)
|
|
|
|
#define DBG_CONTINUE ((DWORD) 0x00010002)
|
|
|
|
#define DBG_TERMINATE_THREAD ((DWORD) 0x40010003)
|
|
|
|
#define DBG_TERMINATE_PROCESS ((DWORD) 0x40010004)
|
|
|
|
#define DBG_CONTROL_C ((DWORD) 0x40010005)
|
2014-06-14 09:39:24 +02:00
|
|
|
#define DBG_PRINTEXCEPTION_C ((DWORD) 0x40010006)
|
2014-06-23 02:56:12 +02:00
|
|
|
#define DBG_RIPEXCEPTION ((DWORD) 0x40010007)
|
2005-11-28 17:32:54 +01:00
|
|
|
#define DBG_CONTROL_BREAK ((DWORD) 0x40010008)
|
|
|
|
#define DBG_COMMAND_EXCEPTION ((DWORD) 0x40010009)
|
|
|
|
#define DBG_EXCEPTION_NOT_HANDLED ((DWORD) 0x80010001)
|
2003-09-09 21:26:40 +02:00
|
|
|
|
|
|
|
#endif /* WIN32_NO_STATUS */
|
|
|
|
|
1999-02-09 16:46:25 +01:00
|
|
|
/* Argument 1 passed to the DllEntryProc. */
|
|
|
|
#define DLL_PROCESS_DETACH 0 /* detach process (unload library) */
|
|
|
|
#define DLL_PROCESS_ATTACH 1 /* attach process (load library) */
|
|
|
|
#define DLL_THREAD_ATTACH 2 /* attach new thread */
|
|
|
|
#define DLL_THREAD_DETACH 3 /* detach thread */
|
2006-03-21 15:10:22 +01:00
|
|
|
#ifdef __WINESRC__
|
|
|
|
#define DLL_WINE_PREATTACH 8 /* called before process attach for Wine builtins */
|
|
|
|
#endif
|
1999-02-09 16:46:25 +01:00
|
|
|
|
|
|
|
/* u.x.wProcessorArchitecture (NT) */
|
1999-07-31 21:22:25 +02:00
|
|
|
#define PROCESSOR_ARCHITECTURE_INTEL 0
|
|
|
|
#define PROCESSOR_ARCHITECTURE_MIPS 1
|
|
|
|
#define PROCESSOR_ARCHITECTURE_ALPHA 2
|
|
|
|
#define PROCESSOR_ARCHITECTURE_PPC 3
|
|
|
|
#define PROCESSOR_ARCHITECTURE_SHX 4
|
|
|
|
#define PROCESSOR_ARCHITECTURE_ARM 5
|
2005-07-18 11:11:42 +02:00
|
|
|
#define PROCESSOR_ARCHITECTURE_IA64 6
|
|
|
|
#define PROCESSOR_ARCHITECTURE_ALPHA64 7
|
|
|
|
#define PROCESSOR_ARCHITECTURE_MSIL 8
|
|
|
|
#define PROCESSOR_ARCHITECTURE_AMD64 9
|
2010-10-26 21:50:31 +02:00
|
|
|
#define PROCESSOR_ARCHITECTURE_IA32_ON_WIN64 10
|
2013-11-10 22:46:17 +01:00
|
|
|
#define PROCESSOR_ARCHITECTURE_NEUTRAL 11
|
2015-05-20 14:31:43 +02:00
|
|
|
#define PROCESSOR_ARCHITECTURE_ARM64 12
|
2018-11-10 15:13:28 +01:00
|
|
|
#define PROCESSOR_ARCHITECTURE_ARM32_ON_WIN64 13
|
|
|
|
#define PROCESSOR_ARCHITECTURE_IA32_ON_ARM64 14
|
1999-07-31 21:22:25 +02:00
|
|
|
#define PROCESSOR_ARCHITECTURE_UNKNOWN 0xFFFF
|
1999-02-09 16:46:25 +01:00
|
|
|
|
|
|
|
/* dwProcessorType */
|
1999-07-31 21:22:25 +02:00
|
|
|
#define PROCESSOR_INTEL_386 386
|
|
|
|
#define PROCESSOR_INTEL_486 486
|
|
|
|
#define PROCESSOR_INTEL_PENTIUM 586
|
|
|
|
#define PROCESSOR_INTEL_860 860
|
2005-07-18 11:11:42 +02:00
|
|
|
#define PROCESSOR_INTEL_IA64 2200
|
|
|
|
#define PROCESSOR_AMD_X8664 8664
|
1999-07-31 21:22:25 +02:00
|
|
|
#define PROCESSOR_MIPS_R2000 2000
|
|
|
|
#define PROCESSOR_MIPS_R3000 3000
|
|
|
|
#define PROCESSOR_MIPS_R4000 4000
|
|
|
|
#define PROCESSOR_ALPHA_21064 21064
|
|
|
|
#define PROCESSOR_PPC_601 601
|
|
|
|
#define PROCESSOR_PPC_603 603
|
|
|
|
#define PROCESSOR_PPC_604 604
|
|
|
|
#define PROCESSOR_PPC_620 620
|
|
|
|
#define PROCESSOR_HITACHI_SH3 10003
|
|
|
|
#define PROCESSOR_HITACHI_SH3E 10004
|
|
|
|
#define PROCESSOR_HITACHI_SH4 10005
|
|
|
|
#define PROCESSOR_MOTOROLA_821 821
|
|
|
|
#define PROCESSOR_SHx_SH3 103
|
|
|
|
#define PROCESSOR_SHx_SH4 104
|
|
|
|
#define PROCESSOR_STRONGARM 2577
|
|
|
|
#define PROCESSOR_ARM720 1824 /* 0x720 */
|
|
|
|
#define PROCESSOR_ARM820 2080 /* 0x820 */
|
|
|
|
#define PROCESSOR_ARM920 2336 /* 0x920 */
|
|
|
|
#define PROCESSOR_ARM_7TDMI 70001
|
2010-11-03 18:40:43 +01:00
|
|
|
#define PROCESSOR_OPTIL 18767
|
1999-02-09 16:46:25 +01:00
|
|
|
|
2009-01-04 14:10:20 +01:00
|
|
|
#ifdef _WIN64
|
|
|
|
#define MAXIMUM_PROCESSORS 64
|
|
|
|
#else
|
2002-04-02 21:37:15 +02:00
|
|
|
#define MAXIMUM_PROCESSORS 32
|
2009-01-04 14:10:20 +01:00
|
|
|
#endif
|
|
|
|
|
2000-05-24 23:03:48 +02:00
|
|
|
typedef struct _MEMORY_BASIC_INFORMATION
|
|
|
|
{
|
|
|
|
LPVOID BaseAddress;
|
|
|
|
LPVOID AllocationBase;
|
|
|
|
DWORD AllocationProtect;
|
2005-07-15 12:01:30 +02:00
|
|
|
SIZE_T RegionSize;
|
2000-05-24 23:03:48 +02:00
|
|
|
DWORD State;
|
|
|
|
DWORD Protect;
|
|
|
|
DWORD Type;
|
2002-11-04 23:43:24 +01:00
|
|
|
} MEMORY_BASIC_INFORMATION, *PMEMORY_BASIC_INFORMATION;
|
2000-05-24 23:03:48 +02:00
|
|
|
|
|
|
|
#define PAGE_NOACCESS 0x01
|
|
|
|
#define PAGE_READONLY 0x02
|
|
|
|
#define PAGE_READWRITE 0x04
|
|
|
|
#define PAGE_WRITECOPY 0x08
|
|
|
|
#define PAGE_EXECUTE 0x10
|
|
|
|
#define PAGE_EXECUTE_READ 0x20
|
|
|
|
#define PAGE_EXECUTE_READWRITE 0x40
|
|
|
|
#define PAGE_EXECUTE_WRITECOPY 0x80
|
|
|
|
#define PAGE_GUARD 0x100
|
|
|
|
#define PAGE_NOCACHE 0x200
|
2006-09-27 16:50:04 +02:00
|
|
|
#define PAGE_WRITECOMBINE 0x400
|
2000-05-24 23:03:48 +02:00
|
|
|
|
|
|
|
#define MEM_COMMIT 0x00001000
|
|
|
|
#define MEM_RESERVE 0x00002000
|
|
|
|
#define MEM_DECOMMIT 0x00004000
|
|
|
|
#define MEM_RELEASE 0x00008000
|
|
|
|
#define MEM_FREE 0x00010000
|
|
|
|
#define MEM_PRIVATE 0x00020000
|
|
|
|
#define MEM_MAPPED 0x00040000
|
|
|
|
#define MEM_RESET 0x00080000
|
|
|
|
#define MEM_TOP_DOWN 0x00100000
|
2006-09-27 16:50:04 +02:00
|
|
|
#define MEM_WRITE_WATCH 0x00200000
|
2005-02-22 20:32:22 +01:00
|
|
|
#define MEM_PHYSICAL 0x00400000
|
2006-09-27 16:50:04 +02:00
|
|
|
#define MEM_LARGE_PAGES 0x20000000
|
|
|
|
#define MEM_4MB_PAGES 0x80000000
|
2000-05-24 23:03:48 +02:00
|
|
|
|
|
|
|
#define SEC_FILE 0x00800000
|
|
|
|
#define SEC_IMAGE 0x01000000
|
2016-07-26 07:20:02 +02:00
|
|
|
#define SEC_PROTECTED_IMAGE 0x02000000
|
2000-05-24 23:03:48 +02:00
|
|
|
#define SEC_RESERVE 0x04000000
|
|
|
|
#define SEC_COMMIT 0x08000000
|
|
|
|
#define SEC_NOCACHE 0x10000000
|
2016-07-26 07:20:02 +02:00
|
|
|
#define SEC_WRITECOMBINE 0x40000000
|
2006-09-27 16:50:04 +02:00
|
|
|
#define SEC_LARGE_PAGES 0x80000000
|
2016-07-26 07:20:02 +02:00
|
|
|
#define SEC_IMAGE_NO_EXECUTE (SEC_IMAGE | SEC_NOCACHE)
|
2000-05-24 23:03:48 +02:00
|
|
|
#define MEM_IMAGE SEC_IMAGE
|
|
|
|
|
2006-09-27 16:50:04 +02:00
|
|
|
#define WRITE_WATCH_FLAG_RESET 0x00000001
|
|
|
|
|
2015-06-05 07:32:40 +02:00
|
|
|
#define AT_ROUND_TO_PAGE 0x40000000
|
2000-05-24 23:03:48 +02:00
|
|
|
|
1999-03-10 19:03:53 +01:00
|
|
|
#define MINCHAR 0x80
|
|
|
|
#define MAXCHAR 0x7f
|
|
|
|
#define MINSHORT 0x8000
|
|
|
|
#define MAXSHORT 0x7fff
|
|
|
|
#define MINLONG 0x80000000
|
|
|
|
#define MAXLONG 0x7fffffff
|
|
|
|
#define MAXBYTE 0xff
|
|
|
|
#define MAXWORD 0xffff
|
|
|
|
#define MAXDWORD 0xffffffff
|
2013-10-14 15:14:16 +02:00
|
|
|
#define MAXLONGLONG (((LONGLONG)0x7fffffff << 32) | 0xffffffff)
|
1999-03-10 19:03:53 +01:00
|
|
|
|
2009-12-14 13:58:24 +01:00
|
|
|
#define UNICODE_STRING_MAX_CHARS 32767
|
|
|
|
|
2012-12-10 23:14:02 +01:00
|
|
|
#define FIELD_OFFSET(type, field) ((LONG)offsetof(type, field))
|
1998-11-14 19:24:37 +01:00
|
|
|
|
|
|
|
#define CONTAINING_RECORD(address, type, field) \
|
2012-12-10 23:15:36 +01:00
|
|
|
((type *)((PCHAR)(address) - offsetof(type, field)))
|
1998-11-14 19:24:37 +01:00
|
|
|
|
2018-07-04 01:10:37 +02:00
|
|
|
#ifdef __WINESRC__
|
|
|
|
# define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
|
|
|
|
#endif
|
|
|
|
|
1998-11-14 19:24:37 +01:00
|
|
|
/* Types */
|
|
|
|
|
1999-02-26 12:11:13 +01:00
|
|
|
typedef struct _LIST_ENTRY {
|
|
|
|
struct _LIST_ENTRY *Flink;
|
|
|
|
struct _LIST_ENTRY *Blink;
|
2002-10-02 03:23:33 +02:00
|
|
|
} LIST_ENTRY, *PLIST_ENTRY, * RESTRICTED_POINTER PRLIST_ENTRY;
|
1998-11-14 19:24:37 +01:00
|
|
|
|
1999-02-26 12:11:13 +01:00
|
|
|
typedef struct _SINGLE_LIST_ENTRY {
|
|
|
|
struct _SINGLE_LIST_ENTRY *Next;
|
|
|
|
} SINGLE_LIST_ENTRY, *PSINGLE_LIST_ENTRY;
|
1998-11-14 19:24:37 +01:00
|
|
|
|
2007-01-26 15:21:41 +01:00
|
|
|
#ifdef _WIN64
|
|
|
|
|
2007-02-08 04:58:52 +01:00
|
|
|
typedef struct DECLSPEC_ALIGN(16) _SLIST_ENTRY *PSLIST_ENTRY;
|
|
|
|
typedef struct DECLSPEC_ALIGN(16) _SLIST_ENTRY {
|
2007-01-26 15:21:41 +01:00
|
|
|
PSLIST_ENTRY Next;
|
2007-02-08 04:58:52 +01:00
|
|
|
} SLIST_ENTRY;
|
2007-01-26 15:21:41 +01:00
|
|
|
|
2007-02-08 04:58:52 +01:00
|
|
|
typedef union DECLSPEC_ALIGN(16) _SLIST_HEADER {
|
|
|
|
struct {
|
|
|
|
ULONGLONG Alignment;
|
|
|
|
ULONGLONG Region;
|
2007-02-12 15:05:51 +01:00
|
|
|
} DUMMYSTRUCTNAME;
|
2007-02-08 04:58:52 +01:00
|
|
|
struct {
|
|
|
|
ULONGLONG Depth:16;
|
|
|
|
ULONGLONG Sequence:9;
|
|
|
|
ULONGLONG NextEntry:39;
|
|
|
|
ULONGLONG HeaderType:1;
|
|
|
|
ULONGLONG Init:1;
|
|
|
|
ULONGLONG Reserved:59;
|
|
|
|
ULONGLONG Region:3;
|
|
|
|
} Header8;
|
|
|
|
struct {
|
|
|
|
ULONGLONG Depth:16;
|
|
|
|
ULONGLONG Sequence:48;
|
|
|
|
ULONGLONG HeaderType:1;
|
|
|
|
ULONGLONG Init:1;
|
|
|
|
ULONGLONG Reserved:2;
|
|
|
|
ULONGLONG NextEntry:60;
|
|
|
|
} Header16;
|
2007-01-26 15:21:41 +01:00
|
|
|
} SLIST_HEADER, *PSLIST_HEADER;
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2007-02-05 18:04:24 +01:00
|
|
|
#undef SLIST_ENTRY /* for Mac OS */
|
2007-01-26 15:21:41 +01:00
|
|
|
#define SLIST_ENTRY SINGLE_LIST_ENTRY
|
|
|
|
#define _SLIST_ENTRY _SINGLE_LIST_ENTRY
|
|
|
|
#define PSLIST_ENTRY PSINGLE_LIST_ENTRY
|
|
|
|
|
|
|
|
typedef union _SLIST_HEADER {
|
|
|
|
ULONGLONG Alignment;
|
|
|
|
struct {
|
|
|
|
SLIST_ENTRY Next;
|
|
|
|
WORD Depth;
|
|
|
|
WORD Sequence;
|
2007-02-12 15:05:51 +01:00
|
|
|
} DUMMYSTRUCTNAME;
|
2007-01-26 15:21:41 +01:00
|
|
|
} SLIST_HEADER, *PSLIST_HEADER;
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2007-11-07 12:28:59 +01:00
|
|
|
NTSYSAPI PSLIST_ENTRY WINAPI RtlFirstEntrySList(const SLIST_HEADER*);
|
|
|
|
NTSYSAPI VOID WINAPI RtlInitializeSListHead(PSLIST_HEADER);
|
|
|
|
NTSYSAPI PSLIST_ENTRY WINAPI RtlInterlockedFlushSList(PSLIST_HEADER);
|
|
|
|
NTSYSAPI PSLIST_ENTRY WINAPI RtlInterlockedPopEntrySList(PSLIST_HEADER);
|
|
|
|
NTSYSAPI PSLIST_ENTRY WINAPI RtlInterlockedPushEntrySList(PSLIST_HEADER, PSLIST_ENTRY);
|
|
|
|
NTSYSAPI WORD WINAPI RtlQueryDepthSList(PSLIST_HEADER);
|
2007-02-09 15:57:07 +01:00
|
|
|
|
|
|
|
|
1996-04-14 15:21:20 +02:00
|
|
|
/* Heap flags */
|
Release 970112
Sat Jan 11 18:17:59 1997 Alexandre Julliard <julliard@lrc.epfl.ch>
* [controls/menu.c]
Updated to new Win32 types.
* [controls/listbox.c]
Fixed Winfile extended selection bug.
* [files/directory.c]
Changed DIR_SearchPath to return both long and short file names.
* [files/dos_fs.c]
Implemented VFAT ioctl to retrieve the original short filenames
from a VFAT filesystem (Linux only for now).
Replaced DOSFS_GetUnixFileName()/DOSFS_GetDosTrueName() by
DOS_GetFullName().
Properly implemented GetShortPathName() and GetFullPathName().
Made all functions re-entrant.
* [files/file.c] [misc/main.c]
Replaced -allowreadonly option by -failreadonly. The default is
now to report success when opening a read-only file for writing.
* [objects/metafile.c]
Fixed bug in DIB bitmaps pointer calculation.
* [scheduler/process.c]
Implemented environment strings and Get/SetStdHandle with process
environment block.
* [tools/build.c]
Rewrote BuildContext32() to avoid instructions that may not be
supported by all assemblers.
Fri Jan 10 17:11:09 1997 David Faure <david.faure@ifhamy.insa-lyon.fr>
* [windows/event.c]
Created table keyc2vkey, which associate a vkey(+extended bit) to
any keycode. Changed EVENT_event_to_vkey to use this table to
return the correct vkey. Changed EVENT_ToAscii to get the keycode
from this table too. Assigned OEM specific vkeys arbitrarily.
Fri Jan 10 09:26:17 1997 John Harvey <john@division.co.uk>
* [misc/winsock.c] [misc/winsoc_async.c]
Fixed svr4 header files.
Changed bzero() to memset().
* [tools/fnt2bdf.c]
Removed bcopy() and used memcpy() instead.
* [debugger/msc.c]
Include string.h instead of strings.h
* [debugger/stabs.c]
Include string.h instead of strings.h.
Define __ELF__ for svr4 systems.
* [loader/signal.c]
Use wait() instead of wait4() which doesnt exist on Unixware.
* [memory/global.c]
Use sysconf() instead of getpagesize() for svr4 systems.
Thu Jan 9 21:07:20 1997 Robert Pouliot <krynos@clic.net>
* [Make.rules.in] [Makefile.in] [make_os2.sh] [rc/Makefile.in]
[tools/Makefile.in] [documentation/wine_os2.txt]
Patches for OS/2 support. Note that it doesn't compile yet.
Tue Jan 7 20:03:53 1997 Eric Youngdale <eric@sub2304.jic.com>
* [debugger/*]
Many more debugger improvements (see debugger/README for details).
Tue Jan 7 15:12:21 1997 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
* [windows/graphics.c] [objects/text.c] [graphics/x11drv/*]
[graphics/metafiledrv/*]
Moved some device dependent code into the resp. subdirs.
* [include/gdi.h] [include/metafiledrv.h] [include/x11drv.h]
Prototypes added,
DC_FUNCTIONS: GetPixel added, some unnecessary functions removed.
* [objects/region.c]
CreatePolyPolygonRgn32 added.
* [files/dos_fs.c]
QueryDosDevice added.
* [misc/lstr.c]
FormatMessage: broken heap management fixed.
* [scheduler/process.c] [scheduler/thread.c]
Get/SetThreadPriority/PriorityClass added.
Mon Jan 6 21:55:30 1997 Philippe De Muyter <phdm@info.ucl.ac.be>
* [misc/keyboard.c]
ToAscii : Use EVENT_ToAscii instead.
* [windows/event.c]
keypad_key : Do not convert XK_Mode_switch to VK_MENU; recognize
keypad cursor keys.
EVENT_event_to_vkey : New function, to transform a X keycode
into a MSwin vkey + extended bit.
EVENT_ToAscii : New function, to transform a vkey + extended bit
(+ key state table) into ascii char(s), using XLookupString, and
recognizing dead chars.
EVENT_key : Transform AltGr into Ctrl+Alt sequence; call
EVENT_event_to_vkey for keycode to vkey conversion; fixed
previous, context and extended bits.
* [windows/keyboard.c]
Include stddebug.h, to get -debugmsg messages.
GetKeyState : Handle VK_MBUTTON case.
GetKeyboardState, SetKeyboardState : Debugging messages added.
* [windows/message.c]
TranslateMessage : Handle dead chars.
Mon Jan 6 20:10:11 1997 Dominik Strasser <bm424953@muenchen.org>
* [if1632/crtdll.spec] [misc/crtdll.c]
C++ functions new/delete/set_new_handler implemented.
Mon Jan 6 15:48:15 1997 Frans van Dorsselaer <dorssel@rulhmpc49.LeidenUniv.nl>
* [controls/edit.c] [include/windows.h]
Moved the edit control to 32 bits.
Included new (win95) message definitions in windows.h
Implemented EM_SCROLLCARET, EM_SETMARGINS, EM_GETMARGINS,
EM_GETLIMITTEXT, EM_POSFROMCHAR, EM_CHARFROMPOS.
Broke EM_SETWORDBREAKPROC (internal wordwrap still works).
Fixed some bugs, introduced a couple of others.
Text buffer is now initially in 32-bit heap.
* [controls/EDIT.TODO] [controls/combo.c] [controls/widgets.c]
[if1632/wprocs.spec] [library/miscstubs.c] [windows/defdlg.c]
[misc/commdlg.c]
Updated to work with 32-bit edit control.
Sat Jan 4 22:07:27 1997 O.Flebbe <O.Flebbe@science-computing.uni-tuebingen.de>
* [loader/pe_image.c]
Use mmap rather then malloc. Better workaround for clean
segments.
1997-01-12 19:32:19 +01:00
|
|
|
|
1996-04-14 15:21:20 +02:00
|
|
|
#define HEAP_NO_SERIALIZE 0x00000001
|
|
|
|
#define HEAP_GROWABLE 0x00000002
|
|
|
|
#define HEAP_GENERATE_EXCEPTIONS 0x00000004
|
|
|
|
#define HEAP_ZERO_MEMORY 0x00000008
|
|
|
|
#define HEAP_REALLOC_IN_PLACE_ONLY 0x00000010
|
|
|
|
#define HEAP_TAIL_CHECKING_ENABLED 0x00000020
|
|
|
|
#define HEAP_FREE_CHECKING_ENABLED 0x00000040
|
|
|
|
#define HEAP_DISABLE_COALESCE_ON_FREE 0x00000080
|
|
|
|
#define HEAP_CREATE_ALIGN_16 0x00010000
|
|
|
|
#define HEAP_CREATE_ENABLE_TRACING 0x00020000
|
2006-11-26 09:03:25 +01:00
|
|
|
#define HEAP_CREATE_ENABLE_EXECUTE 0x00040000
|
2000-08-02 01:38:02 +02:00
|
|
|
|
|
|
|
/* This flag allows it to create heaps shared by all processes under win95,
|
|
|
|
FIXME: correct name */
|
2001-12-19 20:16:27 +01:00
|
|
|
#define HEAP_SHARED 0x04000000
|
1996-04-14 15:21:20 +02:00
|
|
|
|
2006-11-02 09:23:05 +01:00
|
|
|
typedef enum _HEAP_INFORMATION_CLASS {
|
|
|
|
HeapCompatibilityInformation,
|
|
|
|
} HEAP_INFORMATION_CLASS;
|
|
|
|
|
Release 971221
Fri Dec 19 10:50:46 1997 Douglas Ridgway <ridgway@winehq.com>
* [Make.rules.in] [Makefile.in] [documentation/Makefile.in]
[documentation/README.documentation]
First cut at Wine API documentation. No longer install reference
manual by default.
Wed Dec 17 21:32:23 1997 Andreas Mohr <100.30936@germany.net>
* [files/file.c]
Fixed GetTempFileName16() to use current path of requested drive
as needed.
* [if1632/Makefile.in] [if1632/builtin.c] [if1632/dciman32.spec]
[if1632/msvfw32.spec] [if1632/tapi32.spec] [if1632/wow32.spec]
Added misc DLLs needed by various apps.
Wed Dec 17 12:01:50 1997 Morten Eriksen <mortene@sim.no>
* [if1632/gdi32.spec] [include/windows.h] [objects/palette.c]
Inserted empty stub for CreateHalftonePalette.
Tue Dec 16 22:08:06 1997 Huw D M Davies <h.davies1@physics.oxford.ac.uk>
* [windows/mdi.c]
Use VK_TAB instead of VK_SEPARATOR in TranslateMDISysAccel().
* [graphics/metafiledrv/init.c]
DeleteDC() on a MetaDC doesn't do anything - it shouldn't. Therefore
fix cleanup of MetaDCs in CloseMetaFile(); they now actually get
removed from the GDI heap!
* [graphics/x11drv/xfont.c]
Preserve FO_MATCH_XYINDEP flag in XFONT_MatchFIList(). Should reduce
the number of bold-italic matches.
Tue Dec 16 20:11:43 1997 Bertho Stultiens <bertho@panter.soci.aau.dk>
* [graphics/painting.c]
Included an implementation of DrawState
* [if1632/thunk.c]
Changed many fprintfs into dprintf_thunk
* [include/cache.h] [graphics/cache.c]
New files to hold cached handles to regulary used GDI object.
* [include/windows.h]
Added DRAWSTATExx typedefs
Added DSS_DEFAULT define for DrawState
* [objects/text.c]
New implementation of GrayString()
* [controls/uitools.c]
Implemented DrawFrameControl() functions
Changed DrawEdge() behaviour to win95 implementation
Mon Dec 15 23:43:01 1997 Martin Boehme <boehme@informatik.mu-luebeck.de>
* [graphics/path.c] [include/path.h] [graphics/painting.c]
[if1632/gdi32.spec] [include/gdi.h] [include/windows.h]
[objects/dc.c]
Added preliminary support for GDI paths.
* [objects/dc.c]
Added DC_Init_DC_INFO function for initializing WIN_DC_INFO
structure.
* [include/windows.h] [include/gdi.h] [objects/gdiobj.c]
Added DEFAULT_GUI_FONT.
* [include/winerror.h]
Added a few error codes.
* [memory/heap.c]
Changed HeapAlloc to make the correct calls to SetLastError
(now conforms to NT's behaviour).
* [windows/win.c]
Changed WIN_CreateWindowEx to allow child windows with zero
width / height.
Sun Dec 14 12:01:07 1997 Alexandre Julliard <julliard@lrc.epfl.ch>
* [if1632/*] [relay32/*]
Moved all 32-bit relay stuff to relay32/
* [fi1632/thunk.c] [win32/kernel32.c]
Moved all KERNEL32 ordinal functions to kernel32.c
* [memory/selector.c]
Initialize selectors in AllocSelectorArray.
* [tools/build.c]
Generate C instead of assembly for Win32 relays.
Fixed stack corruption in CallTo16 functions, found by Bertho
Stultiens.
Sun Dec 14 10:55:00 1997 Andreas Mohr <100.30936@germany.net>
* [if1632/Makefile.in] [if1632/builtin.c] [if1632/ole2thk.spec]
Added built-in OLE2THK.DLL.
* [if1632/toolhelp.spec] [include/toolhelp.h] [memory/selector.c]
[misc/toolhelp.c]
Added stubs for StackTraceFirst(), StackTraceCSIPFirst(),
StackTraceNext(), UTSelectorOffsetToLinear()
and UTLinearToSelectorOffset().
Sat Dec 13 17:26:41 1997 Alex Korobka <alex@trantor.pharm.sunysb.edu>
* [misc/winsock.c]
32-bit API fixes for reported problems (thanks to Marcus
and David).
* [graphics/x11drv/xfont.c]
Little tweak in point size calculation.
* [windows/defwnd.c] [windows/dce.c] [windows/winhelp.c]
[windows/winproc.c] [windows/win.c]
Bug fixes.
Sat Dec 13 16:35:14 1997 Kai Morich <kai.morich@rhein-neckar.netsurf.de>
* [files/dos_fs.c]
OpenFile with empty filename and OF_PARSE returns current dir.
* [misc/commdlg.c]
Ignore initial dir if bogus.
* [files/file.c]
Locking an identic region in a file must not be an error.
* [misc/lstr.c]
Use wide char ctype functions.
Fri Dec 12 23:46:22 1997 Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
* [file/drive.c]
First attempt for GetDiskFreeSpaceEx.
Fri Dec 12 23:18:41 1997 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
* [loader/pe_resource.c]
Fixed wrongly appearing menus problem (only use default lookups in
last resource subtree).
* [multimedia/*.c]
Added win32 support for time* and joy* lowlevel drivers,
(not excessively tested), some misc fixes and cleanups.
* [misc/shellord.c][misc/shell.c][ole/folders.c][ole/ifs.c]
[include/interfaces.h][include/shlobj.h]
Added some more undocumented SHELL32 functions, some shell folder
interface stubs added, SHGetMalloc, SHGetDesktopFolder,
SHGetSpecialFolderLocation, SHGetPathFromIDList stubs added,
IMalloc, IUnknown implemented.
* [windows/msgbox.c]
Implemented MessageBoxIndirect*, some internal changes.
* [if1632/thunk.c]
KERNEL_431 implemented.
* [objects/gdiobj.c]
GetCurrentObject implemented.
Wed Dec 3 01:09:17 1997 Gordon Chaffee <chaffee@apu.cs.berkeley.edu>
* [objects/dib.c]
Fix a couple small DIB problems.
* [controls/edit.c]
Fix a typo.
* [files/dos_fs.c]
Try normal readdir in case fs is specified as vfat but isn't.
* [files/profile.c]
Implementation of WritePrivateProfileSection32A from Uwe Bonnes.
* [misc/printdrv.c]
OpenPrinter32A stub, helps Word97 start.
* [objects/text.c]
Fixup implementation of GetTextCharsetInfo.
* [scheduler/process.c]
Fix environment variable expansion.
* [win32/code_page.c]
Make MultiByteToWideChar and WideCharToMultiByte conform in return
values and error conditions to those in Windows NT 4.0.
* [windows/message.c]
Fix broadcasting problems in Win32. The Win32 docs say to use
HWND_TOPMOST to broadcast to all Win32 Windows.
* [memory/virtual.c] [loader/pe_image.c]
Do not map in VirtualAlloc if address is specified and space is
not available. This is required by Win32.
* [include/pen.h] [include/x11drv.h] [objects/dc.c]
[objects/pen.c] [graphics/x11drv/pen.c]
Support for ExtCreatePen.
Tue Dec 2 20:22:06 1997 Morten Welinder <terra@diku.dk>
* [*/*.c] [*/*.h]
Add lots of prototypes.
* [if1632/kernel32.spec][include/windows.h][include/winnt.h]
[misc/cpu.c]
Define IsProcessorFeaturePresent.
* [misc/crtdll.c]
(CRTDLL__getcwd): Allocate enough memory for the terminating zero.
* [misc/ver.c]
Improve check for null component in _find_data[AW]. Plug leaks
in VerQueryValue*.
* [win32/console.c][if1632/kernel32.spec]
Add stubs for GetConsoleCursorInfo32, SetConsoleCursorInfo32.
* [windows/message.c][if1632/user32.spec][include/windows.h]
Define SendMessageTimeout*.
* [graphics/x11drv/xfont.c]
Change algorithm of __genericCheckSum to be alignment safe.
* [misc/main.c] [misc/winsock.c] [misc/winsock_dns.c]
Include winsock.h early to avoid Solaris problem.
* [include/windows.h]
Undef FSHIFT before we define it.
* [rc/winerc.c]
Include <fcntl.h> instead of <sys/fcntl.h>.
* [files/file.c]
Use strerror in FILE_SetDosError if available.
* [include/config.h.in] [configure.in]
Check for strerror.
* [objects/gdiobj.c]
Make static font structures aligned.
Mon Dec 1 10:10:21 1997 Karl Garrison <karlos@eznet.net>
* [win32/console.c] [if1632/kernel32.spec] [include/windows.h]
Added stub for GetNumberOfConsoleMouseButtons.
Added stub for PeekConsoleInput(A,W).
Fixed parameter list for WriteConsole(A,W).
GetNumberOfConsoleInputEvents now returns 0 events instead of 1
(since low-level console functions are not yet supported).
GetConsoleMode no longer returns ENABLE_WINDOW_INPUT and
ENABLE_MOUSE_INPUT since these are not currently implemented.
1997-12-21 20:17:50 +01:00
|
|
|
/* Processor feature flags. */
|
Release 980201
Sun Feb 1 13:24:54 1998 Alexandre Julliard <julliard@lrc.epfl.ch>
* [files/drive.c]
Added Device= parameter to drive configuration.
* [if1632/relay.c]
Throw() and Catch() now use the correct CATCHBUF layout (untested).
* [tools/build.c] [include/stackframe.h] [loader/task.c]
Moved 16-bit stack pointer into thread database.
Save current %fs while running 16-bit code.
Fri Jan 30 09:25:49 1998 Martin Boehme <boehme@informatik.mu-luebeck.de>
* [graphics/mapping.c]
Made DPtoLP32 and LPtoDP32 respect world transforms.
* [graphics/path.c] [graphics/painting.c] [if1632/gdi.spec]
[include/path.h]
More path support.
* [include/gdi.h] [include/windows.h] [objects/dc.c]
[relay/gdi32.spec]
Support for Get/SetArcDirection and Get/SetWorldTransform
* [windows/hook.c]
Fixed a bug in HOOK_Map16To32Common.
Thu Jan 29 23:43:18 1998 Douglas Ridgway <ridgway@taiga.gmcl.com>
* [graphics/metafiledrv/init.c] [objects/metafile.c]
Documentation for metafile related API calls. Fixed a bug to avoid
documenting it.
* [include/windows.h]
Declaration for LoadImage.
Thu Jan 29 21:44:45 1998 Huw D M Davies <h.davies1@physics.oxford.ac.uk>
* [graphics/win16drv/*]
Changes to printing code to enable use of printer fonts with the
win3.1 postscript driver. Remember to add printer=on to [wine]
section of wine.conf . You will also need to disable truetype
fonts from control panel. Winword 6.0 and Write seem to be happy
with this...
* [include/bitmap.h]
Fix Widthbytes for 15bpp displays.
Tue Jan 27 20:54:08 1998 Kristian Nielsen <kristian.nielsen@risoe.dk>
* [tsx11/*] [include/ts*] [tools/make_X11wrappers]
Implemented thread-safe X11 wrappers.
Tue Jan 27 13:54:09 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [windows/queue.c]
Forgot to convert thdb to thread_id.
* [misc/registry.c]
Sped up Windows 95 registry reading. Changed code to traverse
registry as a tree rather than read in all possible keys
(including dead ones).
Tue Jan 27 12:46:09 1998 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
* [loader/pe_image.c][Makefile.in][scheduler/thread.c]
[libtest/hello5.c]
Don't exit() on failed to load referenced dlls.
Fixed static tls allocation for multiple threads.
WINELIB should now be able to load PE dlls. A sample
winelib program, that dynamically loads a internal dll
is included.
* [graphics/ddraw.c][include/ddraw.h][include/d3d.h]
Cleaned up and enhanced further. Added several DirectX5
interface definitions and DirectSurface3 implementation.
Stubs for D3D (NOT coming soon, just there so it fails safely).
* [multimedia/dsound.c][include/dsound.h]
Actually works now for a lot of cases. Some DirectX5 stuff
added. Still lacking several features.
* [windows/dinput.c][include/dinput.h]
Started implementing DirectInput. Doesn't work yet, don't
know why.
* [if1632/thunk.c][misc/callbacks.c]
[win32/kernel.c][include/callbacks.h]
Added WOWCallback16Ex, WOWHandle32.
* [misc/cpu.c]
Fixed GetSystemInfo, IsProcessorFeaturePresent.
* [multimedia/joystick.c][multimedia/time.c]
Several fixes. Small hack to get timerevents in timeGetTime() loops.
Tue Jan 20 11:26:27 1998 Slaven Rezic <eserte@cs.tu-berlin.de>
* [configure.in]
Fixed check for union semun on FreeBSD systems.
Sun Jan 18 23:05:04 1998 Karl Backstrm <karl_b@geocities.com>
* [misc/ole2nls.c] [programs/progman/Sw.rc] [programs/winhelp/Sw.rc]
[resources/sysres_Sw.rc]
Added/updated Swedish language support.
Sun Jan 18 18:49:01 1998 Alex Korobka <alex@trantor.pharm.sunysb.edu>
* [misc/winsock.c] [misc/winsock_dns.c] [windows/event.c]
[windows/win.c] [windows/dce.c] [windows/winpos.c]
Bug fixes.
Sun Jan 18 12:45:23 1997 Andreas Mohr <100.30936@germany.net>
* [msdos/int25.c] [msdos/int26.c]
Implemented "native" absolute disk read/write access.
* [msdos/int13.c] [msdos/ioports.c]
Enhanced GET DRIVE PARAMETERS (int13 AH=08).
* [graphics/win16drv/prtdrv.c] [if1632/gdi.spec]
Fixed typos, implemented dmEnumDFonts,
Started implementation of dmRealizeObject.
* [if1632/compobj.spec] [ole/compobj.c] [relay32/ole32.spec]
Stubs CoCreateInstance, CoFreeUnusedLibraries, implemented
CoFileTimeNow.
* [if1632/kernel.spec] [include/windows.h] [memory/global.c]
[memory/string.c] [misc/kernel.c] [misc/Makefile.in]
[misc/toolhelp.c] [msdos/int21.c]
Implemented GlobalHandleNoRIP, GetFreeMemInfo, DebugFillBuffer,
stubs GetSetKernelDOSProc, DiagQuery, DiagOutput, ToolHelpHook
(Undocumented Windows).
* [if1632/user.spec] [if1632/win32s16.spec] [misc/win32s16.c]
Misc stubs.
* [if1632/winaspi.spec] [misc/aspi.c]
Implemented GetASPIDLLVersion.
* [if1632/wprocs.spec] [msdos/int20.c] [msdos/Makefile.in]
Added handler for Int 0x20 (terminate program, _very_ old-fashioned).
* [misc/w32scomb.c]
Implemented Get16DLLAddress() partially
(big thanks to Marcus and Alexandre).
* [relay32/Makefile.in] [relay32/builtin32.c] [relay32/dplay.spec]
Added built-in DPLAY.DLL.
* [relay32/winmm.spec] [multimedia/joystick.c]
Added joySetThreshold.
* [misc/windebug.c]
Added WinNotify.
* [win32/console.c]
Stubs CreateConsoleScreenBuffer, SetConsoleActiveScreenBuffer,
WriteConsoleOutput32A.
* [windows/user.c]
Stub SetEventHook.
Sat Jan 17 19:30:35 1998 Matthew Toseland <Paul.Toseland@btinternet.com>
* [windows/painting.c]
Fixed broken restore-to-maximized.
Mon Jan 12 21:25:32 1998 Perceval - Marc Huguet Puig <mhp@tinet.fut.es>
* [documentation/wine.man] [include/options.h]
[misc/main.c] [ole/ole2nls.c] [resources/sysres.c]
[resources/sysres_Ca.rc] [resources/Makefile.in]
Added language catalan. (Afegit l'idioma catal).
1998-02-01 19:33:27 +01:00
|
|
|
#define PF_FLOATING_POINT_PRECISION_ERRATA 0
|
|
|
|
#define PF_FLOATING_POINT_EMULATED 1
|
|
|
|
#define PF_COMPARE_EXCHANGE_DOUBLE 2
|
|
|
|
#define PF_MMX_INSTRUCTIONS_AVAILABLE 3
|
|
|
|
#define PF_PPC_MOVEMEM_64BIT_OK 4
|
|
|
|
#define PF_ALPHA_BYTE_INSTRUCTIONS 5
|
2001-02-13 21:20:27 +01:00
|
|
|
#define PF_XMMI_INSTRUCTIONS_AVAILABLE 6
|
2003-06-30 20:28:08 +02:00
|
|
|
#define PF_3DNOW_INSTRUCTIONS_AVAILABLE 7
|
2001-02-13 21:20:27 +01:00
|
|
|
#define PF_RDTSC_INSTRUCTION_AVAILABLE 8
|
2003-06-30 20:28:08 +02:00
|
|
|
#define PF_PAE_ENABLED 9
|
|
|
|
#define PF_XMMI64_INSTRUCTIONS_AVAILABLE 10
|
2007-09-20 19:16:37 +02:00
|
|
|
#define PF_SSE_DAZ_MODE_AVAILABLE 11
|
2005-06-20 12:32:31 +02:00
|
|
|
#define PF_NX_ENABLED 12
|
2007-09-20 19:16:37 +02:00
|
|
|
#define PF_SSE3_INSTRUCTIONS_AVAILABLE 13
|
|
|
|
#define PF_COMPARE_EXCHANGE128 14
|
|
|
|
#define PF_COMPARE64_EXCHANGE128 15
|
|
|
|
#define PF_CHANNELS_ENABLED 16
|
2011-06-04 18:41:04 +02:00
|
|
|
#define PF_XSAVE_ENABLED 17
|
2012-03-27 21:37:44 +02:00
|
|
|
#define PF_ARM_VFP_32_REGISTERS_AVAILABLE 18
|
|
|
|
#define PF_ARM_NEON_INSTRUCTIONS_AVAILABLE 19
|
|
|
|
#define PF_SECOND_LEVEL_ADDRESS_TRANSLATION 20
|
|
|
|
#define PF_VIRT_FIRMWARE_ENABLED 21
|
|
|
|
#define PF_RDWRFSGSBASE_AVAILABLE 22
|
2013-11-10 22:46:17 +01:00
|
|
|
#define PF_FASTFAIL_AVAILABLE 23
|
|
|
|
#define PF_ARM_DIVIDE_INSTRUCTION_AVAILABLE 24
|
|
|
|
#define PF_ARM_64BIT_LOADSTORE_ATOMIC 25
|
|
|
|
#define PF_ARM_EXTERNAL_CACHE_AVAILABLE 26
|
|
|
|
#define PF_ARM_FMAC_INSTRUCTIONS_AVAILABLE 27
|
2015-05-20 14:31:43 +02:00
|
|
|
#define PF_RDRAND_INSTRUCTION_AVAILABLE 28
|
|
|
|
#define PF_ARM_V8_INSTRUCTIONS_AVAILABLE 29
|
|
|
|
#define PF_ARM_V8_CRYPTO_INSTRUCTIONS_AVAILABLE 30
|
|
|
|
#define PF_ARM_V8_CRC32_INSTRUCTIONS_AVAILABLE 31
|
Release 980201
Sun Feb 1 13:24:54 1998 Alexandre Julliard <julliard@lrc.epfl.ch>
* [files/drive.c]
Added Device= parameter to drive configuration.
* [if1632/relay.c]
Throw() and Catch() now use the correct CATCHBUF layout (untested).
* [tools/build.c] [include/stackframe.h] [loader/task.c]
Moved 16-bit stack pointer into thread database.
Save current %fs while running 16-bit code.
Fri Jan 30 09:25:49 1998 Martin Boehme <boehme@informatik.mu-luebeck.de>
* [graphics/mapping.c]
Made DPtoLP32 and LPtoDP32 respect world transforms.
* [graphics/path.c] [graphics/painting.c] [if1632/gdi.spec]
[include/path.h]
More path support.
* [include/gdi.h] [include/windows.h] [objects/dc.c]
[relay/gdi32.spec]
Support for Get/SetArcDirection and Get/SetWorldTransform
* [windows/hook.c]
Fixed a bug in HOOK_Map16To32Common.
Thu Jan 29 23:43:18 1998 Douglas Ridgway <ridgway@taiga.gmcl.com>
* [graphics/metafiledrv/init.c] [objects/metafile.c]
Documentation for metafile related API calls. Fixed a bug to avoid
documenting it.
* [include/windows.h]
Declaration for LoadImage.
Thu Jan 29 21:44:45 1998 Huw D M Davies <h.davies1@physics.oxford.ac.uk>
* [graphics/win16drv/*]
Changes to printing code to enable use of printer fonts with the
win3.1 postscript driver. Remember to add printer=on to [wine]
section of wine.conf . You will also need to disable truetype
fonts from control panel. Winword 6.0 and Write seem to be happy
with this...
* [include/bitmap.h]
Fix Widthbytes for 15bpp displays.
Tue Jan 27 20:54:08 1998 Kristian Nielsen <kristian.nielsen@risoe.dk>
* [tsx11/*] [include/ts*] [tools/make_X11wrappers]
Implemented thread-safe X11 wrappers.
Tue Jan 27 13:54:09 1998 Constantine Sapuntzakis <csapuntz@tma-1.lcs.mit.edu>
* [windows/queue.c]
Forgot to convert thdb to thread_id.
* [misc/registry.c]
Sped up Windows 95 registry reading. Changed code to traverse
registry as a tree rather than read in all possible keys
(including dead ones).
Tue Jan 27 12:46:09 1998 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
* [loader/pe_image.c][Makefile.in][scheduler/thread.c]
[libtest/hello5.c]
Don't exit() on failed to load referenced dlls.
Fixed static tls allocation for multiple threads.
WINELIB should now be able to load PE dlls. A sample
winelib program, that dynamically loads a internal dll
is included.
* [graphics/ddraw.c][include/ddraw.h][include/d3d.h]
Cleaned up and enhanced further. Added several DirectX5
interface definitions and DirectSurface3 implementation.
Stubs for D3D (NOT coming soon, just there so it fails safely).
* [multimedia/dsound.c][include/dsound.h]
Actually works now for a lot of cases. Some DirectX5 stuff
added. Still lacking several features.
* [windows/dinput.c][include/dinput.h]
Started implementing DirectInput. Doesn't work yet, don't
know why.
* [if1632/thunk.c][misc/callbacks.c]
[win32/kernel.c][include/callbacks.h]
Added WOWCallback16Ex, WOWHandle32.
* [misc/cpu.c]
Fixed GetSystemInfo, IsProcessorFeaturePresent.
* [multimedia/joystick.c][multimedia/time.c]
Several fixes. Small hack to get timerevents in timeGetTime() loops.
Tue Jan 20 11:26:27 1998 Slaven Rezic <eserte@cs.tu-berlin.de>
* [configure.in]
Fixed check for union semun on FreeBSD systems.
Sun Jan 18 23:05:04 1998 Karl Backstrm <karl_b@geocities.com>
* [misc/ole2nls.c] [programs/progman/Sw.rc] [programs/winhelp/Sw.rc]
[resources/sysres_Sw.rc]
Added/updated Swedish language support.
Sun Jan 18 18:49:01 1998 Alex Korobka <alex@trantor.pharm.sunysb.edu>
* [misc/winsock.c] [misc/winsock_dns.c] [windows/event.c]
[windows/win.c] [windows/dce.c] [windows/winpos.c]
Bug fixes.
Sun Jan 18 12:45:23 1997 Andreas Mohr <100.30936@germany.net>
* [msdos/int25.c] [msdos/int26.c]
Implemented "native" absolute disk read/write access.
* [msdos/int13.c] [msdos/ioports.c]
Enhanced GET DRIVE PARAMETERS (int13 AH=08).
* [graphics/win16drv/prtdrv.c] [if1632/gdi.spec]
Fixed typos, implemented dmEnumDFonts,
Started implementation of dmRealizeObject.
* [if1632/compobj.spec] [ole/compobj.c] [relay32/ole32.spec]
Stubs CoCreateInstance, CoFreeUnusedLibraries, implemented
CoFileTimeNow.
* [if1632/kernel.spec] [include/windows.h] [memory/global.c]
[memory/string.c] [misc/kernel.c] [misc/Makefile.in]
[misc/toolhelp.c] [msdos/int21.c]
Implemented GlobalHandleNoRIP, GetFreeMemInfo, DebugFillBuffer,
stubs GetSetKernelDOSProc, DiagQuery, DiagOutput, ToolHelpHook
(Undocumented Windows).
* [if1632/user.spec] [if1632/win32s16.spec] [misc/win32s16.c]
Misc stubs.
* [if1632/winaspi.spec] [misc/aspi.c]
Implemented GetASPIDLLVersion.
* [if1632/wprocs.spec] [msdos/int20.c] [msdos/Makefile.in]
Added handler for Int 0x20 (terminate program, _very_ old-fashioned).
* [misc/w32scomb.c]
Implemented Get16DLLAddress() partially
(big thanks to Marcus and Alexandre).
* [relay32/Makefile.in] [relay32/builtin32.c] [relay32/dplay.spec]
Added built-in DPLAY.DLL.
* [relay32/winmm.spec] [multimedia/joystick.c]
Added joySetThreshold.
* [misc/windebug.c]
Added WinNotify.
* [win32/console.c]
Stubs CreateConsoleScreenBuffer, SetConsoleActiveScreenBuffer,
WriteConsoleOutput32A.
* [windows/user.c]
Stub SetEventHook.
Sat Jan 17 19:30:35 1998 Matthew Toseland <Paul.Toseland@btinternet.com>
* [windows/painting.c]
Fixed broken restore-to-maximized.
Mon Jan 12 21:25:32 1998 Perceval - Marc Huguet Puig <mhp@tinet.fut.es>
* [documentation/wine.man] [include/options.h]
[misc/main.c] [ole/ole2nls.c] [resources/sysres.c]
[resources/sysres_Ca.rc] [resources/Makefile.in]
Added language catalan. (Afegit l'idioma catal).
1998-02-01 19:33:27 +01:00
|
|
|
|
Release 971221
Fri Dec 19 10:50:46 1997 Douglas Ridgway <ridgway@winehq.com>
* [Make.rules.in] [Makefile.in] [documentation/Makefile.in]
[documentation/README.documentation]
First cut at Wine API documentation. No longer install reference
manual by default.
Wed Dec 17 21:32:23 1997 Andreas Mohr <100.30936@germany.net>
* [files/file.c]
Fixed GetTempFileName16() to use current path of requested drive
as needed.
* [if1632/Makefile.in] [if1632/builtin.c] [if1632/dciman32.spec]
[if1632/msvfw32.spec] [if1632/tapi32.spec] [if1632/wow32.spec]
Added misc DLLs needed by various apps.
Wed Dec 17 12:01:50 1997 Morten Eriksen <mortene@sim.no>
* [if1632/gdi32.spec] [include/windows.h] [objects/palette.c]
Inserted empty stub for CreateHalftonePalette.
Tue Dec 16 22:08:06 1997 Huw D M Davies <h.davies1@physics.oxford.ac.uk>
* [windows/mdi.c]
Use VK_TAB instead of VK_SEPARATOR in TranslateMDISysAccel().
* [graphics/metafiledrv/init.c]
DeleteDC() on a MetaDC doesn't do anything - it shouldn't. Therefore
fix cleanup of MetaDCs in CloseMetaFile(); they now actually get
removed from the GDI heap!
* [graphics/x11drv/xfont.c]
Preserve FO_MATCH_XYINDEP flag in XFONT_MatchFIList(). Should reduce
the number of bold-italic matches.
Tue Dec 16 20:11:43 1997 Bertho Stultiens <bertho@panter.soci.aau.dk>
* [graphics/painting.c]
Included an implementation of DrawState
* [if1632/thunk.c]
Changed many fprintfs into dprintf_thunk
* [include/cache.h] [graphics/cache.c]
New files to hold cached handles to regulary used GDI object.
* [include/windows.h]
Added DRAWSTATExx typedefs
Added DSS_DEFAULT define for DrawState
* [objects/text.c]
New implementation of GrayString()
* [controls/uitools.c]
Implemented DrawFrameControl() functions
Changed DrawEdge() behaviour to win95 implementation
Mon Dec 15 23:43:01 1997 Martin Boehme <boehme@informatik.mu-luebeck.de>
* [graphics/path.c] [include/path.h] [graphics/painting.c]
[if1632/gdi32.spec] [include/gdi.h] [include/windows.h]
[objects/dc.c]
Added preliminary support for GDI paths.
* [objects/dc.c]
Added DC_Init_DC_INFO function for initializing WIN_DC_INFO
structure.
* [include/windows.h] [include/gdi.h] [objects/gdiobj.c]
Added DEFAULT_GUI_FONT.
* [include/winerror.h]
Added a few error codes.
* [memory/heap.c]
Changed HeapAlloc to make the correct calls to SetLastError
(now conforms to NT's behaviour).
* [windows/win.c]
Changed WIN_CreateWindowEx to allow child windows with zero
width / height.
Sun Dec 14 12:01:07 1997 Alexandre Julliard <julliard@lrc.epfl.ch>
* [if1632/*] [relay32/*]
Moved all 32-bit relay stuff to relay32/
* [fi1632/thunk.c] [win32/kernel32.c]
Moved all KERNEL32 ordinal functions to kernel32.c
* [memory/selector.c]
Initialize selectors in AllocSelectorArray.
* [tools/build.c]
Generate C instead of assembly for Win32 relays.
Fixed stack corruption in CallTo16 functions, found by Bertho
Stultiens.
Sun Dec 14 10:55:00 1997 Andreas Mohr <100.30936@germany.net>
* [if1632/Makefile.in] [if1632/builtin.c] [if1632/ole2thk.spec]
Added built-in OLE2THK.DLL.
* [if1632/toolhelp.spec] [include/toolhelp.h] [memory/selector.c]
[misc/toolhelp.c]
Added stubs for StackTraceFirst(), StackTraceCSIPFirst(),
StackTraceNext(), UTSelectorOffsetToLinear()
and UTLinearToSelectorOffset().
Sat Dec 13 17:26:41 1997 Alex Korobka <alex@trantor.pharm.sunysb.edu>
* [misc/winsock.c]
32-bit API fixes for reported problems (thanks to Marcus
and David).
* [graphics/x11drv/xfont.c]
Little tweak in point size calculation.
* [windows/defwnd.c] [windows/dce.c] [windows/winhelp.c]
[windows/winproc.c] [windows/win.c]
Bug fixes.
Sat Dec 13 16:35:14 1997 Kai Morich <kai.morich@rhein-neckar.netsurf.de>
* [files/dos_fs.c]
OpenFile with empty filename and OF_PARSE returns current dir.
* [misc/commdlg.c]
Ignore initial dir if bogus.
* [files/file.c]
Locking an identic region in a file must not be an error.
* [misc/lstr.c]
Use wide char ctype functions.
Fri Dec 12 23:46:22 1997 Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
* [file/drive.c]
First attempt for GetDiskFreeSpaceEx.
Fri Dec 12 23:18:41 1997 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
* [loader/pe_resource.c]
Fixed wrongly appearing menus problem (only use default lookups in
last resource subtree).
* [multimedia/*.c]
Added win32 support for time* and joy* lowlevel drivers,
(not excessively tested), some misc fixes and cleanups.
* [misc/shellord.c][misc/shell.c][ole/folders.c][ole/ifs.c]
[include/interfaces.h][include/shlobj.h]
Added some more undocumented SHELL32 functions, some shell folder
interface stubs added, SHGetMalloc, SHGetDesktopFolder,
SHGetSpecialFolderLocation, SHGetPathFromIDList stubs added,
IMalloc, IUnknown implemented.
* [windows/msgbox.c]
Implemented MessageBoxIndirect*, some internal changes.
* [if1632/thunk.c]
KERNEL_431 implemented.
* [objects/gdiobj.c]
GetCurrentObject implemented.
Wed Dec 3 01:09:17 1997 Gordon Chaffee <chaffee@apu.cs.berkeley.edu>
* [objects/dib.c]
Fix a couple small DIB problems.
* [controls/edit.c]
Fix a typo.
* [files/dos_fs.c]
Try normal readdir in case fs is specified as vfat but isn't.
* [files/profile.c]
Implementation of WritePrivateProfileSection32A from Uwe Bonnes.
* [misc/printdrv.c]
OpenPrinter32A stub, helps Word97 start.
* [objects/text.c]
Fixup implementation of GetTextCharsetInfo.
* [scheduler/process.c]
Fix environment variable expansion.
* [win32/code_page.c]
Make MultiByteToWideChar and WideCharToMultiByte conform in return
values and error conditions to those in Windows NT 4.0.
* [windows/message.c]
Fix broadcasting problems in Win32. The Win32 docs say to use
HWND_TOPMOST to broadcast to all Win32 Windows.
* [memory/virtual.c] [loader/pe_image.c]
Do not map in VirtualAlloc if address is specified and space is
not available. This is required by Win32.
* [include/pen.h] [include/x11drv.h] [objects/dc.c]
[objects/pen.c] [graphics/x11drv/pen.c]
Support for ExtCreatePen.
Tue Dec 2 20:22:06 1997 Morten Welinder <terra@diku.dk>
* [*/*.c] [*/*.h]
Add lots of prototypes.
* [if1632/kernel32.spec][include/windows.h][include/winnt.h]
[misc/cpu.c]
Define IsProcessorFeaturePresent.
* [misc/crtdll.c]
(CRTDLL__getcwd): Allocate enough memory for the terminating zero.
* [misc/ver.c]
Improve check for null component in _find_data[AW]. Plug leaks
in VerQueryValue*.
* [win32/console.c][if1632/kernel32.spec]
Add stubs for GetConsoleCursorInfo32, SetConsoleCursorInfo32.
* [windows/message.c][if1632/user32.spec][include/windows.h]
Define SendMessageTimeout*.
* [graphics/x11drv/xfont.c]
Change algorithm of __genericCheckSum to be alignment safe.
* [misc/main.c] [misc/winsock.c] [misc/winsock_dns.c]
Include winsock.h early to avoid Solaris problem.
* [include/windows.h]
Undef FSHIFT before we define it.
* [rc/winerc.c]
Include <fcntl.h> instead of <sys/fcntl.h>.
* [files/file.c]
Use strerror in FILE_SetDosError if available.
* [include/config.h.in] [configure.in]
Check for strerror.
* [objects/gdiobj.c]
Make static font structures aligned.
Mon Dec 1 10:10:21 1997 Karl Garrison <karlos@eznet.net>
* [win32/console.c] [if1632/kernel32.spec] [include/windows.h]
Added stub for GetNumberOfConsoleMouseButtons.
Added stub for PeekConsoleInput(A,W).
Fixed parameter list for WriteConsole(A,W).
GetNumberOfConsoleInputEvents now returns 0 events instead of 1
(since low-level console functions are not yet supported).
GetConsoleMode no longer returns ENABLE_WINDOW_INPUT and
ENABLE_MOUSE_INPUT since these are not currently implemented.
1997-12-21 20:17:50 +01:00
|
|
|
|
2001-05-18 22:58:43 +02:00
|
|
|
/* Execution state flags */
|
|
|
|
#define ES_SYSTEM_REQUIRED 0x00000001
|
|
|
|
#define ES_DISPLAY_REQUIRED 0x00000002
|
|
|
|
#define ES_USER_PRESENT 0x00000004
|
|
|
|
#define ES_CONTINUOUS 0x80000000
|
|
|
|
|
1997-01-01 18:29:55 +01:00
|
|
|
/* The Win32 register context */
|
|
|
|
|
2010-10-20 17:55:22 +02:00
|
|
|
/* i386 context definitions */
|
|
|
|
#ifdef __i386__
|
|
|
|
|
1997-01-01 18:29:55 +01:00
|
|
|
#define SIZE_OF_80387_REGISTERS 80
|
|
|
|
|
1999-06-26 20:35:34 +02:00
|
|
|
typedef struct _FLOATING_SAVE_AREA
|
1997-01-01 18:29:55 +01:00
|
|
|
{
|
|
|
|
DWORD ControlWord;
|
|
|
|
DWORD StatusWord;
|
2002-06-01 01:06:46 +02:00
|
|
|
DWORD TagWord;
|
1997-01-01 18:29:55 +01:00
|
|
|
DWORD ErrorOffset;
|
|
|
|
DWORD ErrorSelector;
|
|
|
|
DWORD DataOffset;
|
2002-06-01 01:06:46 +02:00
|
|
|
DWORD DataSelector;
|
1997-01-01 18:29:55 +01:00
|
|
|
BYTE RegisterArea[SIZE_OF_80387_REGISTERS];
|
|
|
|
DWORD Cr0NpxState;
|
1999-06-26 20:35:34 +02:00
|
|
|
} FLOATING_SAVE_AREA, *PFLOATING_SAVE_AREA;
|
1997-01-01 18:29:55 +01:00
|
|
|
|
2001-11-23 19:44:43 +01:00
|
|
|
#define MAXIMUM_SUPPORTED_EXTENSION 512
|
|
|
|
|
2010-10-20 15:48:52 +02:00
|
|
|
typedef struct _CONTEXT
|
1997-01-01 18:29:55 +01:00
|
|
|
{
|
2018-01-22 15:49:31 +01:00
|
|
|
DWORD ContextFlags; /* 000 */
|
1997-01-01 18:29:55 +01:00
|
|
|
|
|
|
|
/* These are selected by CONTEXT_DEBUG_REGISTERS */
|
2018-01-22 15:49:31 +01:00
|
|
|
DWORD Dr0; /* 004 */
|
|
|
|
DWORD Dr1; /* 008 */
|
|
|
|
DWORD Dr2; /* 00c */
|
|
|
|
DWORD Dr3; /* 010 */
|
|
|
|
DWORD Dr6; /* 014 */
|
|
|
|
DWORD Dr7; /* 018 */
|
1997-01-01 18:29:55 +01:00
|
|
|
|
|
|
|
/* These are selected by CONTEXT_FLOATING_POINT */
|
2018-01-22 15:49:31 +01:00
|
|
|
FLOATING_SAVE_AREA FloatSave; /* 01c */
|
1997-01-01 18:29:55 +01:00
|
|
|
|
|
|
|
/* These are selected by CONTEXT_SEGMENTS */
|
2018-01-22 15:49:31 +01:00
|
|
|
DWORD SegGs; /* 08c */
|
|
|
|
DWORD SegFs; /* 090 */
|
|
|
|
DWORD SegEs; /* 094 */
|
|
|
|
DWORD SegDs; /* 098 */
|
1997-01-01 18:29:55 +01:00
|
|
|
|
|
|
|
/* These are selected by CONTEXT_INTEGER */
|
2018-01-22 15:49:31 +01:00
|
|
|
DWORD Edi; /* 09c */
|
|
|
|
DWORD Esi; /* 0a0 */
|
|
|
|
DWORD Ebx; /* 0a4 */
|
|
|
|
DWORD Edx; /* 0a8 */
|
|
|
|
DWORD Ecx; /* 0ac */
|
|
|
|
DWORD Eax; /* 0b0 */
|
1997-01-01 18:29:55 +01:00
|
|
|
|
|
|
|
/* These are selected by CONTEXT_CONTROL */
|
2018-01-22 15:49:31 +01:00
|
|
|
DWORD Ebp; /* 0b4 */
|
|
|
|
DWORD Eip; /* 0b8 */
|
|
|
|
DWORD SegCs; /* 0bc */
|
|
|
|
DWORD EFlags; /* 0c0 */
|
|
|
|
DWORD Esp; /* 0c4 */
|
|
|
|
DWORD SegSs; /* 0c8 */
|
|
|
|
|
|
|
|
BYTE ExtendedRegisters[MAXIMUM_SUPPORTED_EXTENSION]; /* 0xcc */
|
2010-10-20 15:48:52 +02:00
|
|
|
} CONTEXT;
|
1999-06-26 20:35:34 +02:00
|
|
|
|
1999-07-15 16:32:20 +02:00
|
|
|
#define CONTEXT_X86 0x00010000
|
|
|
|
#define CONTEXT_i386 CONTEXT_X86
|
|
|
|
#define CONTEXT_i486 CONTEXT_X86
|
|
|
|
|
2010-10-20 15:48:52 +02:00
|
|
|
#define CONTEXT_CONTROL (CONTEXT_i386 | 0x0001) /* SS:SP, CS:IP, FLAGS, BP */
|
|
|
|
#define CONTEXT_INTEGER (CONTEXT_i386 | 0x0002) /* AX, BX, CX, DX, SI, DI */
|
|
|
|
#define CONTEXT_SEGMENTS (CONTEXT_i386 | 0x0004) /* DS, ES, FS, GS */
|
2011-10-26 23:43:22 +02:00
|
|
|
#define CONTEXT_FLOATING_POINT (CONTEXT_i386 | 0x0008) /* 387 state */
|
|
|
|
#define CONTEXT_DEBUG_REGISTERS (CONTEXT_i386 | 0x0010) /* DB 0-3,6,7 */
|
|
|
|
#define CONTEXT_EXTENDED_REGISTERS (CONTEXT_i386 | 0x0020)
|
2010-10-20 15:48:52 +02:00
|
|
|
#define CONTEXT_FULL (CONTEXT_CONTROL | CONTEXT_INTEGER | CONTEXT_SEGMENTS)
|
|
|
|
#define CONTEXT_ALL (CONTEXT_CONTROL | CONTEXT_INTEGER | CONTEXT_SEGMENTS | \
|
|
|
|
CONTEXT_FLOATING_POINT | CONTEXT_DEBUG_REGISTERS | CONTEXT_EXTENDED_REGISTERS)
|
1999-06-26 20:35:34 +02:00
|
|
|
|
2006-09-20 11:27:53 +02:00
|
|
|
#define EXCEPTION_READ_FAULT 0
|
|
|
|
#define EXCEPTION_WRITE_FAULT 1
|
|
|
|
#define EXCEPTION_EXECUTE_FAULT 8
|
|
|
|
|
1999-06-26 20:35:34 +02:00
|
|
|
#endif /* __i386__ */
|
|
|
|
|
2004-08-23 19:49:32 +02:00
|
|
|
typedef struct _LDT_ENTRY {
|
|
|
|
WORD LimitLow;
|
|
|
|
WORD BaseLow;
|
|
|
|
union {
|
2005-05-23 18:23:35 +02:00
|
|
|
struct {
|
|
|
|
BYTE BaseMid;
|
|
|
|
BYTE Flags1;
|
|
|
|
BYTE Flags2;
|
|
|
|
BYTE BaseHi;
|
|
|
|
} Bytes;
|
|
|
|
struct {
|
|
|
|
unsigned BaseMid: 8;
|
|
|
|
unsigned Type : 5;
|
|
|
|
unsigned Dpl : 2;
|
|
|
|
unsigned Pres : 1;
|
|
|
|
unsigned LimitHi : 4;
|
|
|
|
unsigned Sys : 1;
|
|
|
|
unsigned Reserved_0 : 1;
|
|
|
|
unsigned Default_Big : 1;
|
|
|
|
unsigned Granularity : 1;
|
|
|
|
unsigned BaseHi : 8;
|
|
|
|
} Bits;
|
2004-08-23 19:49:32 +02:00
|
|
|
} HighWord;
|
2018-06-06 20:30:16 +02:00
|
|
|
} LDT_ENTRY, *PLDT_ENTRY, WOW64_LDT_ENTRY, *PWOW64_LDT_ENTRY;
|
2004-08-23 19:49:32 +02:00
|
|
|
|
2005-07-18 11:11:42 +02:00
|
|
|
/* x86-64 context definitions */
|
|
|
|
#if defined(__x86_64__)
|
|
|
|
|
|
|
|
#define CONTEXT_AMD64 0x00100000
|
|
|
|
|
|
|
|
#define CONTEXT_CONTROL (CONTEXT_AMD64 | 0x0001)
|
|
|
|
#define CONTEXT_INTEGER (CONTEXT_AMD64 | 0x0002)
|
|
|
|
#define CONTEXT_SEGMENTS (CONTEXT_AMD64 | 0x0004)
|
2011-10-26 23:43:22 +02:00
|
|
|
#define CONTEXT_FLOATING_POINT (CONTEXT_AMD64 | 0x0008)
|
|
|
|
#define CONTEXT_DEBUG_REGISTERS (CONTEXT_AMD64 | 0x0010)
|
2005-07-18 11:11:42 +02:00
|
|
|
#define CONTEXT_FULL (CONTEXT_CONTROL | CONTEXT_INTEGER | CONTEXT_FLOATING_POINT)
|
|
|
|
#define CONTEXT_ALL (CONTEXT_CONTROL | CONTEXT_INTEGER | CONTEXT_SEGMENTS | CONTEXT_FLOATING_POINT | CONTEXT_DEBUG_REGISTERS)
|
|
|
|
|
2006-09-20 11:27:53 +02:00
|
|
|
#define EXCEPTION_READ_FAULT 0
|
|
|
|
#define EXCEPTION_WRITE_FAULT 1
|
|
|
|
#define EXCEPTION_EXECUTE_FAULT 8
|
|
|
|
|
2005-07-18 11:11:42 +02:00
|
|
|
typedef struct DECLSPEC_ALIGN(16) _M128A {
|
|
|
|
ULONGLONG Low;
|
|
|
|
LONGLONG High;
|
|
|
|
} M128A, *PM128A;
|
|
|
|
|
|
|
|
typedef struct _XMM_SAVE_AREA32 {
|
2009-01-06 17:00:27 +01:00
|
|
|
WORD ControlWord; /* 000 */
|
|
|
|
WORD StatusWord; /* 002 */
|
|
|
|
BYTE TagWord; /* 004 */
|
|
|
|
BYTE Reserved1; /* 005 */
|
|
|
|
WORD ErrorOpcode; /* 006 */
|
|
|
|
DWORD ErrorOffset; /* 008 */
|
|
|
|
WORD ErrorSelector; /* 00c */
|
|
|
|
WORD Reserved2; /* 00e */
|
|
|
|
DWORD DataOffset; /* 010 */
|
|
|
|
WORD DataSelector; /* 014 */
|
|
|
|
WORD Reserved3; /* 016 */
|
|
|
|
DWORD MxCsr; /* 018 */
|
|
|
|
DWORD MxCsr_Mask; /* 01c */
|
|
|
|
M128A FloatRegisters[8]; /* 020 */
|
|
|
|
M128A XmmRegisters[16]; /* 0a0 */
|
|
|
|
BYTE Reserved4[96]; /* 1a0 */
|
2005-07-18 11:11:42 +02:00
|
|
|
} XMM_SAVE_AREA32, *PXMM_SAVE_AREA32;
|
|
|
|
|
|
|
|
typedef struct DECLSPEC_ALIGN(16) _CONTEXT {
|
2009-01-06 17:00:27 +01:00
|
|
|
DWORD64 P1Home; /* 000 */
|
|
|
|
DWORD64 P2Home; /* 008 */
|
|
|
|
DWORD64 P3Home; /* 010 */
|
|
|
|
DWORD64 P4Home; /* 018 */
|
|
|
|
DWORD64 P5Home; /* 020 */
|
|
|
|
DWORD64 P6Home; /* 028 */
|
2005-07-18 11:11:42 +02:00
|
|
|
|
|
|
|
/* Control flags */
|
2009-01-06 17:00:27 +01:00
|
|
|
DWORD ContextFlags; /* 030 */
|
|
|
|
DWORD MxCsr; /* 034 */
|
2005-07-18 11:11:42 +02:00
|
|
|
|
|
|
|
/* Segment */
|
2009-01-06 17:00:27 +01:00
|
|
|
WORD SegCs; /* 038 */
|
|
|
|
WORD SegDs; /* 03a */
|
|
|
|
WORD SegEs; /* 03c */
|
|
|
|
WORD SegFs; /* 03e */
|
|
|
|
WORD SegGs; /* 040 */
|
|
|
|
WORD SegSs; /* 042 */
|
|
|
|
DWORD EFlags; /* 044 */
|
2005-07-18 11:11:42 +02:00
|
|
|
|
|
|
|
/* Debug */
|
2009-01-06 17:00:27 +01:00
|
|
|
DWORD64 Dr0; /* 048 */
|
|
|
|
DWORD64 Dr1; /* 050 */
|
|
|
|
DWORD64 Dr2; /* 058 */
|
|
|
|
DWORD64 Dr3; /* 060 */
|
|
|
|
DWORD64 Dr6; /* 068 */
|
|
|
|
DWORD64 Dr7; /* 070 */
|
2005-07-18 11:11:42 +02:00
|
|
|
|
|
|
|
/* Integer */
|
2009-01-06 17:00:27 +01:00
|
|
|
DWORD64 Rax; /* 078 */
|
|
|
|
DWORD64 Rcx; /* 080 */
|
|
|
|
DWORD64 Rdx; /* 088 */
|
|
|
|
DWORD64 Rbx; /* 090 */
|
|
|
|
DWORD64 Rsp; /* 098 */
|
|
|
|
DWORD64 Rbp; /* 0a0 */
|
|
|
|
DWORD64 Rsi; /* 0a8 */
|
|
|
|
DWORD64 Rdi; /* 0b0 */
|
|
|
|
DWORD64 R8; /* 0b8 */
|
|
|
|
DWORD64 R9; /* 0c0 */
|
|
|
|
DWORD64 R10; /* 0c8 */
|
|
|
|
DWORD64 R11; /* 0d0 */
|
|
|
|
DWORD64 R12; /* 0d8 */
|
|
|
|
DWORD64 R13; /* 0e0 */
|
|
|
|
DWORD64 R14; /* 0e8 */
|
|
|
|
DWORD64 R15; /* 0f0 */
|
2005-07-18 11:11:42 +02:00
|
|
|
|
|
|
|
/* Counter */
|
2009-01-06 17:00:27 +01:00
|
|
|
DWORD64 Rip; /* 0f8 */
|
2005-07-18 11:11:42 +02:00
|
|
|
|
|
|
|
/* Floating point */
|
|
|
|
union {
|
2009-01-06 17:00:27 +01:00
|
|
|
XMM_SAVE_AREA32 FltSave; /* 100 */
|
2005-07-18 11:11:42 +02:00
|
|
|
struct {
|
2009-01-06 17:00:27 +01:00
|
|
|
M128A Header[2]; /* 100 */
|
|
|
|
M128A Legacy[8]; /* 120 */
|
|
|
|
M128A Xmm0; /* 1a0 */
|
|
|
|
M128A Xmm1; /* 1b0 */
|
|
|
|
M128A Xmm2; /* 1c0 */
|
|
|
|
M128A Xmm3; /* 1d0 */
|
|
|
|
M128A Xmm4; /* 1e0 */
|
|
|
|
M128A Xmm5; /* 1f0 */
|
|
|
|
M128A Xmm6; /* 200 */
|
|
|
|
M128A Xmm7; /* 210 */
|
|
|
|
M128A Xmm8; /* 220 */
|
|
|
|
M128A Xmm9; /* 230 */
|
|
|
|
M128A Xmm10; /* 240 */
|
|
|
|
M128A Xmm11; /* 250 */
|
|
|
|
M128A Xmm12; /* 260 */
|
|
|
|
M128A Xmm13; /* 270 */
|
|
|
|
M128A Xmm14; /* 280 */
|
|
|
|
M128A Xmm15; /* 290 */
|
2005-07-18 11:11:42 +02:00
|
|
|
} DUMMYSTRUCTNAME;
|
|
|
|
} DUMMYUNIONNAME;
|
|
|
|
|
|
|
|
/* Vector */
|
2009-01-06 17:00:27 +01:00
|
|
|
M128A VectorRegister[26]; /* 300 */
|
|
|
|
DWORD64 VectorControl; /* 4a0 */
|
2005-07-18 11:11:42 +02:00
|
|
|
|
|
|
|
/* Debug control */
|
2009-01-06 17:00:27 +01:00
|
|
|
DWORD64 DebugControl; /* 4a8 */
|
|
|
|
DWORD64 LastBranchToRip; /* 4b0 */
|
|
|
|
DWORD64 LastBranchFromRip; /* 4b8 */
|
|
|
|
DWORD64 LastExceptionToRip; /* 4c0 */
|
|
|
|
DWORD64 LastExceptionFromRip; /* 4c8 */
|
2005-07-18 11:11:42 +02:00
|
|
|
} CONTEXT;
|
|
|
|
|
2008-12-08 19:27:59 +01:00
|
|
|
typedef struct _RUNTIME_FUNCTION
|
|
|
|
{
|
|
|
|
DWORD BeginAddress;
|
|
|
|
DWORD EndAddress;
|
|
|
|
DWORD UnwindData;
|
|
|
|
} RUNTIME_FUNCTION, *PRUNTIME_FUNCTION;
|
|
|
|
|
2009-12-04 14:29:35 +01:00
|
|
|
#define UNWIND_HISTORY_TABLE_SIZE 12
|
|
|
|
|
|
|
|
typedef struct _UNWIND_HISTORY_TABLE_ENTRY
|
|
|
|
{
|
|
|
|
ULONG64 ImageBase;
|
|
|
|
PRUNTIME_FUNCTION FunctionEntry;
|
|
|
|
} UNWIND_HISTORY_TABLE_ENTRY, *PUNWIND_HISTORY_TABLE_ENTRY;
|
|
|
|
|
|
|
|
#define UNWIND_HISTORY_TABLE_NONE 0
|
|
|
|
#define UNWIND_HISTORY_TABLE_GLOBAL 1
|
|
|
|
#define UNWIND_HISTORY_TABLE_LOCAL 2
|
|
|
|
|
|
|
|
typedef struct _UNWIND_HISTORY_TABLE
|
|
|
|
{
|
|
|
|
ULONG Count;
|
|
|
|
UCHAR Search;
|
|
|
|
ULONG64 LowAddress;
|
|
|
|
ULONG64 HighAddress;
|
|
|
|
UNWIND_HISTORY_TABLE_ENTRY Entry[UNWIND_HISTORY_TABLE_SIZE];
|
|
|
|
} UNWIND_HISTORY_TABLE, *PUNWIND_HISTORY_TABLE;
|
|
|
|
|
|
|
|
typedef struct _KNONVOLATILE_CONTEXT_POINTERS
|
|
|
|
{
|
|
|
|
union
|
|
|
|
{
|
|
|
|
PM128A FloatingContext[16];
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
PM128A Xmm0;
|
|
|
|
PM128A Xmm1;
|
|
|
|
PM128A Xmm2;
|
|
|
|
PM128A Xmm3;
|
|
|
|
PM128A Xmm4;
|
|
|
|
PM128A Xmm5;
|
|
|
|
PM128A Xmm6;
|
|
|
|
PM128A Xmm7;
|
|
|
|
PM128A Xmm8;
|
|
|
|
PM128A Xmm9;
|
|
|
|
PM128A Xmm10;
|
|
|
|
PM128A Xmm11;
|
|
|
|
PM128A Xmm12;
|
|
|
|
PM128A Xmm13;
|
|
|
|
PM128A Xmm14;
|
|
|
|
PM128A Xmm15;
|
2013-04-30 11:12:47 +02:00
|
|
|
} DUMMYSTRUCTNAME;
|
|
|
|
} DUMMYUNIONNAME;
|
2009-12-04 14:29:35 +01:00
|
|
|
|
|
|
|
union
|
|
|
|
{
|
|
|
|
PULONG64 IntegerContext[16];
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
PULONG64 Rax;
|
|
|
|
PULONG64 Rcx;
|
|
|
|
PULONG64 Rdx;
|
|
|
|
PULONG64 Rbx;
|
|
|
|
PULONG64 Rsp;
|
|
|
|
PULONG64 Rbp;
|
|
|
|
PULONG64 Rsi;
|
|
|
|
PULONG64 Rdi;
|
|
|
|
PULONG64 R8;
|
|
|
|
PULONG64 R9;
|
|
|
|
PULONG64 R10;
|
|
|
|
PULONG64 R11;
|
|
|
|
PULONG64 R12;
|
|
|
|
PULONG64 R13;
|
|
|
|
PULONG64 R14;
|
|
|
|
PULONG64 R15;
|
2013-04-30 11:12:47 +02:00
|
|
|
} DUMMYSTRUCTNAME;
|
2009-12-04 14:29:35 +01:00
|
|
|
} DUMMYUNIONNAME2;
|
|
|
|
} KNONVOLATILE_CONTEXT_POINTERS, *PKNONVOLATILE_CONTEXT_POINTERS;
|
|
|
|
|
2014-04-07 00:41:30 +02:00
|
|
|
typedef PRUNTIME_FUNCTION (CALLBACK *PGET_RUNTIME_FUNCTION_CALLBACK)(DWORD64,PVOID);
|
|
|
|
|
2009-12-04 12:06:20 +01:00
|
|
|
BOOLEAN CDECL RtlAddFunctionTable(RUNTIME_FUNCTION*,DWORD,DWORD64);
|
|
|
|
BOOLEAN CDECL RtlDeleteFunctionTable(RUNTIME_FUNCTION*);
|
2014-04-07 00:41:30 +02:00
|
|
|
BOOLEAN CDECL RtlInstallFunctionTableCallback(DWORD64,DWORD64,DWORD,PGET_RUNTIME_FUNCTION_CALLBACK,PVOID,PCWSTR);
|
2009-12-04 14:29:35 +01:00
|
|
|
PRUNTIME_FUNCTION WINAPI RtlLookupFunctionEntry(DWORD64,DWORD64*,UNWIND_HISTORY_TABLE*);
|
|
|
|
PVOID WINAPI RtlVirtualUnwind(ULONG,ULONG64,ULONG64,RUNTIME_FUNCTION*,CONTEXT*,PVOID*,ULONG64*,KNONVOLATILE_CONTEXT_POINTERS*);
|
|
|
|
|
|
|
|
#define UNW_FLAG_NHANDLER 0
|
|
|
|
#define UNW_FLAG_EHANDLER 1
|
|
|
|
#define UNW_FLAG_UHANDLER 2
|
|
|
|
#define UNW_FLAG_CHAININFO 4
|
|
|
|
|
2005-07-18 11:11:42 +02:00
|
|
|
#endif /* __x86_64__ */
|
|
|
|
|
2009-12-04 14:29:35 +01:00
|
|
|
/* IA64 context definitions */
|
|
|
|
#ifdef __ia64__
|
|
|
|
|
2010-10-29 17:13:21 +02:00
|
|
|
#define CONTEXT_IA64 0x00080000
|
|
|
|
#define CONTEXT_CONTROL (CONTEXT_IA64 | 0x00000001)
|
|
|
|
#define CONTEXT_LOWER_FLOATING_POINT (CONTEXT_IA64 | 0x00000002)
|
|
|
|
#define CONTEXT_HIGHER_FLOATING_POINT (CONTEXT_IA64 | 0x00000004)
|
|
|
|
#define CONTEXT_INTEGER (CONTEXT_IA64 | 0x00000008)
|
|
|
|
#define CONTEXT_DEBUG (CONTEXT_IA64 | 0x00000010)
|
|
|
|
#define CONTEXT_IA32_CONTROL (CONTEXT_IA64 | 0x00000020)
|
|
|
|
#define CONTEXT_FLOATING_POINT (CONTEXT_LOWER_FLOATING_POINT | CONTEXT_HIGHER_FLOATING_POINT)
|
|
|
|
#define CONTEXT_FULL (CONTEXT_CONTROL | CONTEXT_FLOATING_POINT | CONTEXT_INTEGER | CONTEXT_IA32_CONTROL)
|
|
|
|
#define CONTEXT_ALL (CONTEXT_CONTROL | CONTEXT_FLOATING_POINT | CONTEXT_INTEGER | CONTEXT_DEBUG | CONTEXT_IA32_CONTROL)
|
|
|
|
|
|
|
|
#define CONTEXT_EXCEPTION_ACTIVE 0x8000000
|
|
|
|
#define CONTEXT_SERVICE_ACTIVE 0x10000000
|
|
|
|
#define CONTEXT_EXCEPTION_REQUEST 0x40000000
|
|
|
|
#define CONTEXT_EXCEPTION_REPORTING 0x80000000
|
|
|
|
|
|
|
|
typedef struct _CONTEXT
|
|
|
|
{
|
|
|
|
DWORD ContextFlags;
|
|
|
|
DWORD Fill1[3];
|
|
|
|
ULONGLONG DbI0;
|
|
|
|
ULONGLONG DbI1;
|
|
|
|
ULONGLONG DbI2;
|
|
|
|
ULONGLONG DbI3;
|
|
|
|
ULONGLONG DbI4;
|
|
|
|
ULONGLONG DbI5;
|
|
|
|
ULONGLONG DbI6;
|
|
|
|
ULONGLONG DbI7;
|
|
|
|
ULONGLONG DbD0;
|
|
|
|
ULONGLONG DbD1;
|
|
|
|
ULONGLONG DbD2;
|
|
|
|
ULONGLONG DbD3;
|
|
|
|
ULONGLONG DbD4;
|
|
|
|
ULONGLONG DbD5;
|
|
|
|
ULONGLONG DbD6;
|
|
|
|
ULONGLONG DbD7;
|
|
|
|
FLOAT128 FltS0;
|
|
|
|
FLOAT128 FltS1;
|
|
|
|
FLOAT128 FltS2;
|
|
|
|
FLOAT128 FltS3;
|
|
|
|
FLOAT128 FltT0;
|
|
|
|
FLOAT128 FltT1;
|
|
|
|
FLOAT128 FltT2;
|
|
|
|
FLOAT128 FltT3;
|
|
|
|
FLOAT128 FltT4;
|
|
|
|
FLOAT128 FltT5;
|
|
|
|
FLOAT128 FltT6;
|
|
|
|
FLOAT128 FltT7;
|
|
|
|
FLOAT128 FltT8;
|
|
|
|
FLOAT128 FltT9;
|
|
|
|
FLOAT128 FltS4;
|
|
|
|
FLOAT128 FltS5;
|
|
|
|
FLOAT128 FltS6;
|
|
|
|
FLOAT128 FltS7;
|
|
|
|
FLOAT128 FltS8;
|
|
|
|
FLOAT128 FltS9;
|
|
|
|
FLOAT128 FltS10;
|
|
|
|
FLOAT128 FltS11;
|
|
|
|
FLOAT128 FltS12;
|
|
|
|
FLOAT128 FltS13;
|
|
|
|
FLOAT128 FltS14;
|
|
|
|
FLOAT128 FltS15;
|
|
|
|
FLOAT128 FltS16;
|
|
|
|
FLOAT128 FltS17;
|
|
|
|
FLOAT128 FltS18;
|
|
|
|
FLOAT128 FltS19;
|
|
|
|
FLOAT128 FltF32;
|
|
|
|
FLOAT128 FltF33;
|
|
|
|
FLOAT128 FltF34;
|
|
|
|
FLOAT128 FltF35;
|
|
|
|
FLOAT128 FltF36;
|
|
|
|
FLOAT128 FltF37;
|
|
|
|
FLOAT128 FltF38;
|
|
|
|
FLOAT128 FltF39;
|
|
|
|
FLOAT128 FltF40;
|
|
|
|
FLOAT128 FltF41;
|
|
|
|
FLOAT128 FltF42;
|
|
|
|
FLOAT128 FltF43;
|
|
|
|
FLOAT128 FltF44;
|
|
|
|
FLOAT128 FltF45;
|
|
|
|
FLOAT128 FltF46;
|
|
|
|
FLOAT128 FltF47;
|
|
|
|
FLOAT128 FltF48;
|
|
|
|
FLOAT128 FltF49;
|
|
|
|
FLOAT128 FltF50;
|
|
|
|
FLOAT128 FltF51;
|
|
|
|
FLOAT128 FltF52;
|
|
|
|
FLOAT128 FltF53;
|
|
|
|
FLOAT128 FltF54;
|
|
|
|
FLOAT128 FltF55;
|
|
|
|
FLOAT128 FltF56;
|
|
|
|
FLOAT128 FltF57;
|
|
|
|
FLOAT128 FltF58;
|
|
|
|
FLOAT128 FltF59;
|
|
|
|
FLOAT128 FltF60;
|
|
|
|
FLOAT128 FltF61;
|
|
|
|
FLOAT128 FltF62;
|
|
|
|
FLOAT128 FltF63;
|
|
|
|
FLOAT128 FltF64;
|
|
|
|
FLOAT128 FltF65;
|
|
|
|
FLOAT128 FltF66;
|
|
|
|
FLOAT128 FltF67;
|
|
|
|
FLOAT128 FltF68;
|
|
|
|
FLOAT128 FltF69;
|
|
|
|
FLOAT128 FltF70;
|
|
|
|
FLOAT128 FltF71;
|
|
|
|
FLOAT128 FltF72;
|
|
|
|
FLOAT128 FltF73;
|
|
|
|
FLOAT128 FltF74;
|
|
|
|
FLOAT128 FltF75;
|
|
|
|
FLOAT128 FltF76;
|
|
|
|
FLOAT128 FltF77;
|
|
|
|
FLOAT128 FltF78;
|
|
|
|
FLOAT128 FltF79;
|
|
|
|
FLOAT128 FltF80;
|
|
|
|
FLOAT128 FltF81;
|
|
|
|
FLOAT128 FltF82;
|
|
|
|
FLOAT128 FltF83;
|
|
|
|
FLOAT128 FltF84;
|
|
|
|
FLOAT128 FltF85;
|
|
|
|
FLOAT128 FltF86;
|
|
|
|
FLOAT128 FltF87;
|
|
|
|
FLOAT128 FltF88;
|
|
|
|
FLOAT128 FltF89;
|
|
|
|
FLOAT128 FltF90;
|
|
|
|
FLOAT128 FltF91;
|
|
|
|
FLOAT128 FltF92;
|
|
|
|
FLOAT128 FltF93;
|
|
|
|
FLOAT128 FltF94;
|
|
|
|
FLOAT128 FltF95;
|
|
|
|
FLOAT128 FltF96;
|
|
|
|
FLOAT128 FltF97;
|
|
|
|
FLOAT128 FltF98;
|
|
|
|
FLOAT128 FltF99;
|
|
|
|
FLOAT128 FltF100;
|
|
|
|
FLOAT128 FltF101;
|
|
|
|
FLOAT128 FltF102;
|
|
|
|
FLOAT128 FltF103;
|
|
|
|
FLOAT128 FltF104;
|
|
|
|
FLOAT128 FltF105;
|
|
|
|
FLOAT128 FltF106;
|
|
|
|
FLOAT128 FltF107;
|
|
|
|
FLOAT128 FltF108;
|
|
|
|
FLOAT128 FltF109;
|
|
|
|
FLOAT128 FltF110;
|
|
|
|
FLOAT128 FltF111;
|
|
|
|
FLOAT128 FltF112;
|
|
|
|
FLOAT128 FltF113;
|
|
|
|
FLOAT128 FltF114;
|
|
|
|
FLOAT128 FltF115;
|
|
|
|
FLOAT128 FltF116;
|
|
|
|
FLOAT128 FltF117;
|
|
|
|
FLOAT128 FltF118;
|
|
|
|
FLOAT128 FltF119;
|
|
|
|
FLOAT128 FltF120;
|
|
|
|
FLOAT128 FltF121;
|
|
|
|
FLOAT128 FltF122;
|
|
|
|
FLOAT128 FltF123;
|
|
|
|
FLOAT128 FltF124;
|
|
|
|
FLOAT128 FltF125;
|
|
|
|
FLOAT128 FltF126;
|
|
|
|
FLOAT128 FltF127;
|
|
|
|
ULONGLONG StFPSR;
|
|
|
|
ULONGLONG IntGp;
|
|
|
|
ULONGLONG IntT0;
|
|
|
|
ULONGLONG IntT1;
|
|
|
|
ULONGLONG IntS0;
|
|
|
|
ULONGLONG IntS1;
|
|
|
|
ULONGLONG IntS2;
|
|
|
|
ULONGLONG IntS3;
|
|
|
|
ULONGLONG IntV0;
|
|
|
|
ULONGLONG IntT2;
|
|
|
|
ULONGLONG IntT3;
|
|
|
|
ULONGLONG IntT4;
|
|
|
|
ULONGLONG IntSp;
|
|
|
|
ULONGLONG IntTeb;
|
|
|
|
ULONGLONG IntT5;
|
|
|
|
ULONGLONG IntT6;
|
|
|
|
ULONGLONG IntT7;
|
|
|
|
ULONGLONG IntT8;
|
|
|
|
ULONGLONG IntT9;
|
|
|
|
ULONGLONG IntT10;
|
|
|
|
ULONGLONG IntT11;
|
|
|
|
ULONGLONG IntT12;
|
|
|
|
ULONGLONG IntT13;
|
|
|
|
ULONGLONG IntT14;
|
|
|
|
ULONGLONG IntT15;
|
|
|
|
ULONGLONG IntT16;
|
|
|
|
ULONGLONG IntT17;
|
|
|
|
ULONGLONG IntT18;
|
|
|
|
ULONGLONG IntT19;
|
|
|
|
ULONGLONG IntT20;
|
|
|
|
ULONGLONG IntT21;
|
|
|
|
ULONGLONG IntT22;
|
|
|
|
ULONGLONG IntNats;
|
|
|
|
ULONGLONG Preds;
|
|
|
|
ULONGLONG BrRp;
|
|
|
|
ULONGLONG BrS0;
|
|
|
|
ULONGLONG BrS1;
|
|
|
|
ULONGLONG BrS2;
|
|
|
|
ULONGLONG BrS3;
|
|
|
|
ULONGLONG BrS4;
|
|
|
|
ULONGLONG BrT0;
|
|
|
|
ULONGLONG BrT1;
|
|
|
|
ULONGLONG ApUNAT;
|
|
|
|
ULONGLONG ApLC;
|
|
|
|
ULONGLONG ApEC;
|
|
|
|
ULONGLONG ApCCV;
|
|
|
|
ULONGLONG ApDCR;
|
|
|
|
ULONGLONG RsPFS;
|
|
|
|
ULONGLONG RsBSP;
|
|
|
|
ULONGLONG RsBSPSTORE;
|
|
|
|
ULONGLONG RsRSC;
|
|
|
|
ULONGLONG RsRNAT;
|
|
|
|
ULONGLONG StIPSR;
|
|
|
|
ULONGLONG StIIP;
|
|
|
|
ULONGLONG StIFS;
|
|
|
|
ULONGLONG StFCR;
|
|
|
|
ULONGLONG Eflag;
|
|
|
|
ULONGLONG SegCSD;
|
|
|
|
ULONGLONG SegSSD;
|
|
|
|
ULONGLONG Cflag;
|
|
|
|
ULONGLONG StFSR;
|
|
|
|
ULONGLONG StFIR;
|
|
|
|
ULONGLONG StFDR;
|
|
|
|
ULONGLONG UNUSEDPACK;
|
|
|
|
} CONTEXT, *PCONTEXT;
|
|
|
|
|
|
|
|
typedef struct _RUNTIME_FUNCTION
|
|
|
|
{
|
|
|
|
ULONG BeginAddress;
|
|
|
|
ULONG EndAddress;
|
|
|
|
ULONG UnwindInfoAddress;
|
|
|
|
} RUNTIME_FUNCTION, *PRUNTIME_FUNCTION;
|
|
|
|
|
2009-12-04 14:29:35 +01:00
|
|
|
typedef struct _FRAME_POINTERS {
|
|
|
|
ULONGLONG MemoryStackFp;
|
|
|
|
ULONGLONG BackingStoreFp;
|
|
|
|
} FRAME_POINTERS, *PFRAME_POINTERS;
|
|
|
|
|
|
|
|
#define UNWIND_HISTORY_TABLE_SIZE 12
|
|
|
|
|
|
|
|
typedef struct _UNWIND_HISTORY_TABLE_ENTRY {
|
|
|
|
ULONG64 ImageBase;
|
|
|
|
ULONG64 Gp;
|
|
|
|
PRUNTIME_FUNCTION FunctionEntry;
|
|
|
|
} UNWIND_HISTORY_TABLE_ENTRY, *PUNWIND_HISTORY_TABLE_ENTRY;
|
|
|
|
|
|
|
|
typedef struct _UNWIND_HISTORY_TABLE {
|
|
|
|
ULONG Count;
|
|
|
|
UCHAR Search;
|
|
|
|
ULONG64 LowAddress;
|
|
|
|
ULONG64 HighAddress;
|
|
|
|
UNWIND_HISTORY_TABLE_ENTRY Entry[UNWIND_HISTORY_TABLE_SIZE];
|
|
|
|
} UNWIND_HISTORY_TABLE, *PUNWIND_HISTORY_TABLE;
|
|
|
|
|
|
|
|
typedef struct _KNONVOLATILE_CONTEXT_POINTERS
|
|
|
|
{
|
|
|
|
PFLOAT128 FltS0;
|
|
|
|
PFLOAT128 FltS1;
|
|
|
|
PFLOAT128 FltS2;
|
|
|
|
PFLOAT128 FltS3;
|
|
|
|
PFLOAT128 HighFloatingContext[10];
|
|
|
|
PFLOAT128 FltS4;
|
|
|
|
PFLOAT128 FltS5;
|
|
|
|
PFLOAT128 FltS6;
|
|
|
|
PFLOAT128 FltS7;
|
|
|
|
PFLOAT128 FltS8;
|
|
|
|
PFLOAT128 FltS9;
|
|
|
|
PFLOAT128 FltS10;
|
|
|
|
PFLOAT128 FltS11;
|
|
|
|
PFLOAT128 FltS12;
|
|
|
|
PFLOAT128 FltS13;
|
|
|
|
PFLOAT128 FltS14;
|
|
|
|
PFLOAT128 FltS15;
|
|
|
|
PFLOAT128 FltS16;
|
|
|
|
PFLOAT128 FltS17;
|
|
|
|
PFLOAT128 FltS18;
|
|
|
|
PFLOAT128 FltS19;
|
|
|
|
PULONGLONG IntS0;
|
|
|
|
PULONGLONG IntS1;
|
|
|
|
PULONGLONG IntS2;
|
|
|
|
PULONGLONG IntS3;
|
|
|
|
PULONGLONG IntSp;
|
|
|
|
PULONGLONG IntS0Nat;
|
|
|
|
PULONGLONG IntS1Nat;
|
|
|
|
PULONGLONG IntS2Nat;
|
|
|
|
PULONGLONG IntS3Nat;
|
|
|
|
PULONGLONG IntSpNat;
|
|
|
|
PULONGLONG Preds;
|
|
|
|
PULONGLONG BrRp;
|
|
|
|
PULONGLONG BrS0;
|
|
|
|
PULONGLONG BrS1;
|
|
|
|
PULONGLONG BrS2;
|
|
|
|
PULONGLONG BrS3;
|
|
|
|
PULONGLONG BrS4;
|
|
|
|
PULONGLONG ApUNAT;
|
|
|
|
PULONGLONG ApLC;
|
|
|
|
PULONGLONG ApEC;
|
|
|
|
PULONGLONG RsPFS;
|
|
|
|
PULONGLONG StFSR;
|
|
|
|
PULONGLONG StFIR;
|
|
|
|
PULONGLONG StFDR;
|
|
|
|
PULONGLONG Cflag;
|
|
|
|
} KNONVOLATILE_CONTEXT_POINTERS, *PKNONVOLATILE_CONTEXT_POINTERS;
|
|
|
|
|
|
|
|
ULONGLONG WINAPI RtlVirtualUnwind(ULONGLONG,ULONGLONG,RUNTIME_FUNCTION*,CONTEXT*,BOOLEAN*,FRAME_POINTERS*,KNONVOLATILE_CONTEXT_POINTERS*);
|
|
|
|
|
|
|
|
#endif /* __ia64__ */
|
|
|
|
|
1999-07-31 21:22:25 +02:00
|
|
|
/* Alpha context definitions */
|
2005-06-16 11:45:36 +02:00
|
|
|
#if defined(_ALPHA_) || defined(__ALPHA__) || defined(__alpha__)
|
1999-07-31 21:22:25 +02:00
|
|
|
|
|
|
|
#define CONTEXT_ALPHA 0x00020000
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2011-10-26 23:43:22 +02:00
|
|
|
#define CONTEXT_CONTROL (CONTEXT_ALPHA | 0x00000001)
|
|
|
|
#define CONTEXT_FLOATING_POINT (CONTEXT_ALPHA | 0x00000002)
|
|
|
|
#define CONTEXT_INTEGER (CONTEXT_ALPHA | 0x00000004)
|
1999-07-31 21:22:25 +02:00
|
|
|
#define CONTEXT_FULL (CONTEXT_CONTROL | CONTEXT_FLOATING_POINT | CONTEXT_INTEGER)
|
|
|
|
|
2006-09-20 11:27:53 +02:00
|
|
|
#define EXCEPTION_READ_FAULT 0
|
|
|
|
#define EXCEPTION_WRITE_FAULT 1
|
|
|
|
#define EXCEPTION_EXECUTE_FAULT 8
|
|
|
|
|
1999-07-31 21:22:25 +02:00
|
|
|
typedef struct _CONTEXT
|
|
|
|
{
|
|
|
|
/* selected by CONTEXT_FLOATING_POINT */
|
|
|
|
ULONGLONG FltF0;
|
|
|
|
ULONGLONG FltF1;
|
|
|
|
ULONGLONG FltF2;
|
|
|
|
ULONGLONG FltF3;
|
|
|
|
ULONGLONG FltF4;
|
|
|
|
ULONGLONG FltF5;
|
|
|
|
ULONGLONG FltF6;
|
|
|
|
ULONGLONG FltF7;
|
|
|
|
ULONGLONG FltF8;
|
|
|
|
ULONGLONG FltF9;
|
|
|
|
ULONGLONG FltF10;
|
|
|
|
ULONGLONG FltF11;
|
|
|
|
ULONGLONG FltF12;
|
|
|
|
ULONGLONG FltF13;
|
|
|
|
ULONGLONG FltF14;
|
|
|
|
ULONGLONG FltF15;
|
|
|
|
ULONGLONG FltF16;
|
|
|
|
ULONGLONG FltF17;
|
|
|
|
ULONGLONG FltF18;
|
|
|
|
ULONGLONG FltF19;
|
|
|
|
ULONGLONG FltF20;
|
|
|
|
ULONGLONG FltF21;
|
|
|
|
ULONGLONG FltF22;
|
|
|
|
ULONGLONG FltF23;
|
|
|
|
ULONGLONG FltF24;
|
|
|
|
ULONGLONG FltF25;
|
|
|
|
ULONGLONG FltF26;
|
|
|
|
ULONGLONG FltF27;
|
|
|
|
ULONGLONG FltF28;
|
|
|
|
ULONGLONG FltF29;
|
|
|
|
ULONGLONG FltF30;
|
|
|
|
ULONGLONG FltF31;
|
|
|
|
|
|
|
|
/* selected by CONTEXT_INTEGER */
|
|
|
|
ULONGLONG IntV0;
|
|
|
|
ULONGLONG IntT0;
|
|
|
|
ULONGLONG IntT1;
|
|
|
|
ULONGLONG IntT2;
|
|
|
|
ULONGLONG IntT3;
|
|
|
|
ULONGLONG IntT4;
|
|
|
|
ULONGLONG IntT5;
|
|
|
|
ULONGLONG IntT6;
|
|
|
|
ULONGLONG IntT7;
|
|
|
|
ULONGLONG IntS0;
|
|
|
|
ULONGLONG IntS1;
|
|
|
|
ULONGLONG IntS2;
|
|
|
|
ULONGLONG IntS3;
|
|
|
|
ULONGLONG IntS4;
|
|
|
|
ULONGLONG IntS5;
|
|
|
|
ULONGLONG IntFp;
|
|
|
|
ULONGLONG IntA0;
|
|
|
|
ULONGLONG IntA1;
|
|
|
|
ULONGLONG IntA2;
|
|
|
|
ULONGLONG IntA3;
|
|
|
|
ULONGLONG IntA4;
|
|
|
|
ULONGLONG IntA5;
|
|
|
|
ULONGLONG IntT8;
|
|
|
|
ULONGLONG IntT9;
|
|
|
|
ULONGLONG IntT10;
|
|
|
|
ULONGLONG IntT11;
|
|
|
|
ULONGLONG IntRa;
|
|
|
|
ULONGLONG IntT12;
|
|
|
|
ULONGLONG IntAt;
|
|
|
|
ULONGLONG IntGp;
|
|
|
|
ULONGLONG IntSp;
|
|
|
|
ULONGLONG IntZero;
|
|
|
|
|
|
|
|
/* selected by CONTEXT_FLOATING_POINT */
|
|
|
|
ULONGLONG Fpcr;
|
|
|
|
ULONGLONG SoftFpcr;
|
|
|
|
|
|
|
|
/* selected by CONTEXT_CONTROL */
|
|
|
|
ULONGLONG Fir;
|
|
|
|
DWORD Psr;
|
|
|
|
DWORD ContextFlags;
|
|
|
|
DWORD Fill[4];
|
|
|
|
} CONTEXT;
|
|
|
|
|
|
|
|
#define _QUAD_PSR_OFFSET HighSoftFpcr
|
|
|
|
#define _QUAD_FLAGS_OFFSET HighFir
|
|
|
|
|
|
|
|
#endif /* _ALPHA_ */
|
|
|
|
|
2005-06-16 11:45:36 +02:00
|
|
|
#ifdef __arm__
|
|
|
|
|
|
|
|
/* The following flags control the contents of the CONTEXT structure. */
|
|
|
|
|
2012-03-27 21:37:44 +02:00
|
|
|
#define CONTEXT_ARM 0x0200000
|
2011-10-26 23:43:22 +02:00
|
|
|
#define CONTEXT_CONTROL (CONTEXT_ARM | 0x00000001)
|
|
|
|
#define CONTEXT_INTEGER (CONTEXT_ARM | 0x00000002)
|
2012-03-27 21:37:44 +02:00
|
|
|
#define CONTEXT_FLOATING_POINT (CONTEXT_ARM | 0x00000004)
|
|
|
|
#define CONTEXT_DEBUG_REGISTERS (CONTEXT_ARM | 0x00000008)
|
2005-06-16 11:45:36 +02:00
|
|
|
|
|
|
|
#define CONTEXT_FULL (CONTEXT_CONTROL | CONTEXT_INTEGER)
|
2018-01-22 15:49:31 +01:00
|
|
|
#define CONTEXT_ALL (CONTEXT_CONTROL | CONTEXT_INTEGER | CONTEXT_FLOATING_POINT | CONTEXT_DEBUG_REGISTERS)
|
2005-06-16 11:45:36 +02:00
|
|
|
|
2006-09-20 11:27:53 +02:00
|
|
|
#define EXCEPTION_READ_FAULT 0
|
|
|
|
#define EXCEPTION_WRITE_FAULT 1
|
|
|
|
#define EXCEPTION_EXECUTE_FAULT 8
|
|
|
|
|
2017-12-05 09:22:16 +01:00
|
|
|
#define ARM_MAX_BREAKPOINTS 8
|
|
|
|
#define ARM_MAX_WATCHPOINTS 1
|
|
|
|
|
2013-02-26 23:42:33 +01:00
|
|
|
typedef struct _RUNTIME_FUNCTION
|
|
|
|
{
|
|
|
|
DWORD BeginAddress;
|
|
|
|
union {
|
|
|
|
DWORD UnwindData;
|
|
|
|
struct {
|
|
|
|
DWORD Flag : 2;
|
|
|
|
DWORD FunctionLength : 11;
|
|
|
|
DWORD Ret : 2;
|
|
|
|
DWORD H : 1;
|
|
|
|
DWORD Reg : 3;
|
|
|
|
DWORD R : 1;
|
|
|
|
DWORD L : 1;
|
|
|
|
DWORD C : 1;
|
|
|
|
DWORD StackAdjust : 10;
|
|
|
|
} DUMMYSTRUCTNAME;
|
|
|
|
} DUMMYUNIONNAME;
|
|
|
|
} RUNTIME_FUNCTION, *PRUNTIME_FUNCTION;
|
|
|
|
|
|
|
|
#define UNWIND_HISTORY_TABLE_SIZE 12
|
|
|
|
|
|
|
|
typedef struct _UNWIND_HISTORY_TABLE_ENTRY
|
|
|
|
{
|
|
|
|
DWORD ImageBase;
|
|
|
|
PRUNTIME_FUNCTION FunctionEntry;
|
|
|
|
} UNWIND_HISTORY_TABLE_ENTRY, *PUNWIND_HISTORY_TABLE_ENTRY;
|
|
|
|
|
|
|
|
typedef struct _UNWIND_HISTORY_TABLE
|
|
|
|
{
|
|
|
|
DWORD Count;
|
|
|
|
BYTE LocalHint;
|
|
|
|
BYTE GlobalHint;
|
|
|
|
BYTE Search;
|
|
|
|
BYTE Once;
|
|
|
|
DWORD LowAddress;
|
|
|
|
DWORD HighAddress;
|
|
|
|
UNWIND_HISTORY_TABLE_ENTRY Entry[UNWIND_HISTORY_TABLE_SIZE];
|
|
|
|
} UNWIND_HISTORY_TABLE, *PUNWIND_HISTORY_TABLE;
|
|
|
|
|
2017-12-05 09:22:16 +01:00
|
|
|
typedef struct _NEON128
|
|
|
|
{
|
|
|
|
ULONGLONG Low;
|
|
|
|
LONGLONG High;
|
|
|
|
} NEON128, *PNEON128;
|
|
|
|
|
|
|
|
typedef struct _CONTEXT
|
|
|
|
{
|
|
|
|
ULONG ContextFlags; /* 000 */
|
|
|
|
/* CONTEXT_INTEGER */
|
|
|
|
ULONG R0; /* 004 */
|
|
|
|
ULONG R1; /* 008 */
|
|
|
|
ULONG R2; /* 00c */
|
|
|
|
ULONG R3; /* 010 */
|
|
|
|
ULONG R4; /* 014 */
|
|
|
|
ULONG R5; /* 018 */
|
|
|
|
ULONG R6; /* 01c */
|
|
|
|
ULONG R7; /* 020 */
|
|
|
|
ULONG R8; /* 024 */
|
|
|
|
ULONG R9; /* 028 */
|
|
|
|
ULONG R10; /* 02c */
|
|
|
|
ULONG R11; /* 030 */
|
|
|
|
ULONG R12; /* 034 */
|
|
|
|
/* CONTEXT_CONTROL */
|
|
|
|
ULONG Sp; /* 038 */
|
|
|
|
ULONG Lr; /* 03c */
|
|
|
|
ULONG Pc; /* 040 */
|
|
|
|
ULONG Cpsr; /* 044 */
|
|
|
|
/* CONTEXT_FLOATING_POINT */
|
|
|
|
ULONG Fpscr; /* 048 */
|
|
|
|
ULONG Padding; /* 04c */
|
|
|
|
union
|
|
|
|
{
|
|
|
|
NEON128 Q[16];
|
|
|
|
ULONGLONG D[32];
|
|
|
|
ULONG S[32];
|
|
|
|
} DUMMYUNIONNAME; /* 050 */
|
|
|
|
/* CONTEXT_DEBUG_REGISTERS */
|
|
|
|
ULONG Bvr[ARM_MAX_BREAKPOINTS]; /* 150 */
|
|
|
|
ULONG Bcr[ARM_MAX_BREAKPOINTS]; /* 170 */
|
|
|
|
ULONG Wvr[ARM_MAX_WATCHPOINTS]; /* 190 */
|
|
|
|
ULONG Wcr[ARM_MAX_WATCHPOINTS]; /* 194 */
|
|
|
|
ULONG Padding2[2]; /* 198 */
|
2005-06-16 11:45:36 +02:00
|
|
|
} CONTEXT;
|
|
|
|
|
2013-03-23 17:20:28 +01:00
|
|
|
BOOLEAN CDECL RtlAddFunctionTable(RUNTIME_FUNCTION*,DWORD,DWORD);
|
|
|
|
BOOLEAN CDECL RtlDeleteFunctionTable(RUNTIME_FUNCTION*);
|
2013-03-23 17:24:04 +01:00
|
|
|
PRUNTIME_FUNCTION WINAPI RtlLookupFunctionEntry(ULONG_PTR,DWORD*,UNWIND_HISTORY_TABLE*);
|
2013-03-23 17:20:28 +01:00
|
|
|
|
2005-06-16 11:45:36 +02:00
|
|
|
#endif /* __arm__ */
|
|
|
|
|
2013-01-16 00:41:25 +01:00
|
|
|
#ifdef __aarch64__
|
|
|
|
|
2015-05-27 22:33:19 +02:00
|
|
|
#define CONTEXT_ARM64 0x400000
|
2013-01-16 00:41:25 +01:00
|
|
|
#define CONTEXT_CONTROL (CONTEXT_ARM64 | 0x00000001)
|
|
|
|
#define CONTEXT_INTEGER (CONTEXT_ARM64 | 0x00000002)
|
|
|
|
#define CONTEXT_FLOATING_POINT (CONTEXT_ARM64 | 0x00000004)
|
|
|
|
#define CONTEXT_DEBUG_REGISTERS (CONTEXT_ARM64 | 0x00000008)
|
|
|
|
|
|
|
|
#define CONTEXT_FULL (CONTEXT_CONTROL | CONTEXT_INTEGER)
|
2018-01-22 15:49:31 +01:00
|
|
|
#define CONTEXT_ALL (CONTEXT_CONTROL | CONTEXT_INTEGER | CONTEXT_FLOATING_POINT | CONTEXT_DEBUG_REGISTERS)
|
2013-01-16 00:41:25 +01:00
|
|
|
|
|
|
|
#define EXCEPTION_READ_FAULT 0
|
|
|
|
#define EXCEPTION_WRITE_FAULT 1
|
|
|
|
#define EXCEPTION_EXECUTE_FAULT 8
|
|
|
|
|
2017-12-05 13:21:22 +01:00
|
|
|
#define ARM64_MAX_BREAKPOINTS 8
|
|
|
|
#define ARM64_MAX_WATCHPOINTS 2
|
|
|
|
|
2017-09-08 08:47:33 +02:00
|
|
|
typedef struct _RUNTIME_FUNCTION
|
|
|
|
{
|
|
|
|
DWORD BeginAddress;
|
|
|
|
union
|
|
|
|
{
|
|
|
|
DWORD UnwindData;
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
DWORD Flag : 2;
|
|
|
|
DWORD FunctionLength : 11;
|
|
|
|
DWORD RegF : 3;
|
|
|
|
DWORD RegI : 4;
|
|
|
|
DWORD H : 1;
|
|
|
|
DWORD CR : 2;
|
|
|
|
DWORD FrameSize : 9;
|
|
|
|
} DUMMYSTRUCTNAME;
|
|
|
|
} DUMMYUNIONNAME;
|
|
|
|
} RUNTIME_FUNCTION, *PRUNTIME_FUNCTION;
|
|
|
|
|
|
|
|
#define UNWIND_HISTORY_TABLE_SIZE 12
|
|
|
|
|
|
|
|
typedef struct _UNWIND_HISTORY_TABLE_ENTRY
|
|
|
|
{
|
|
|
|
DWORD64 ImageBase;
|
|
|
|
PRUNTIME_FUNCTION FunctionEntry;
|
|
|
|
} UNWIND_HISTORY_TABLE_ENTRY, *PUNWIND_HISTORY_TABLE_ENTRY;
|
|
|
|
|
|
|
|
typedef struct _UNWIND_HISTORY_TABLE
|
|
|
|
{
|
|
|
|
DWORD Count;
|
|
|
|
BYTE LocalHint;
|
|
|
|
BYTE GlobalHint;
|
|
|
|
BYTE Search;
|
|
|
|
BYTE Once;
|
|
|
|
DWORD64 LowAddress;
|
|
|
|
DWORD64 HighAddress;
|
|
|
|
UNWIND_HISTORY_TABLE_ENTRY Entry[UNWIND_HISTORY_TABLE_SIZE];
|
|
|
|
} UNWIND_HISTORY_TABLE, *PUNWIND_HISTORY_TABLE;
|
|
|
|
|
2017-12-05 13:21:22 +01:00
|
|
|
typedef union _NEON128
|
|
|
|
{
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
ULONGLONG Low;
|
|
|
|
LONGLONG High;
|
|
|
|
} DUMMYSTRUCTNAME;
|
|
|
|
double D[2];
|
|
|
|
float S[4];
|
|
|
|
WORD H[8];
|
|
|
|
BYTE B[16];
|
|
|
|
} NEON128, *PNEON128;
|
2013-01-16 00:41:25 +01:00
|
|
|
|
2017-12-05 13:21:22 +01:00
|
|
|
typedef struct _CONTEXT
|
|
|
|
{
|
|
|
|
ULONG ContextFlags; /* 000 */
|
|
|
|
/* CONTEXT_INTEGER */
|
|
|
|
ULONG Cpsr; /* 004 */
|
|
|
|
union
|
|
|
|
{
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
DWORD64 X0; /* 008 */
|
|
|
|
DWORD64 X1; /* 010 */
|
|
|
|
DWORD64 X2; /* 018 */
|
|
|
|
DWORD64 X3; /* 020 */
|
|
|
|
DWORD64 X4; /* 028 */
|
|
|
|
DWORD64 X5; /* 030 */
|
|
|
|
DWORD64 X6; /* 038 */
|
|
|
|
DWORD64 X7; /* 040 */
|
|
|
|
DWORD64 X8; /* 048 */
|
|
|
|
DWORD64 X9; /* 050 */
|
|
|
|
DWORD64 X10; /* 058 */
|
|
|
|
DWORD64 X11; /* 060 */
|
|
|
|
DWORD64 X12; /* 068 */
|
|
|
|
DWORD64 X13; /* 070 */
|
|
|
|
DWORD64 X14; /* 078 */
|
|
|
|
DWORD64 X15; /* 080 */
|
|
|
|
DWORD64 X16; /* 088 */
|
|
|
|
DWORD64 X17; /* 090 */
|
|
|
|
DWORD64 X18; /* 098 */
|
|
|
|
DWORD64 X19; /* 0a0 */
|
|
|
|
DWORD64 X20; /* 0a8 */
|
|
|
|
DWORD64 X21; /* 0b0 */
|
|
|
|
DWORD64 X22; /* 0b8 */
|
|
|
|
DWORD64 X23; /* 0c0 */
|
|
|
|
DWORD64 X24; /* 0c8 */
|
|
|
|
DWORD64 X25; /* 0d0 */
|
|
|
|
DWORD64 X26; /* 0d8 */
|
|
|
|
DWORD64 X27; /* 0e0 */
|
|
|
|
DWORD64 X28; /* 0e8 */
|
2018-03-18 20:11:18 +01:00
|
|
|
DWORD64 Fp; /* 0f0 */
|
|
|
|
DWORD64 Lr; /* 0f8 */
|
2017-12-05 13:21:22 +01:00
|
|
|
} DUMMYSTRUCTNAME;
|
2018-03-18 20:11:18 +01:00
|
|
|
DWORD64 X[31]; /* 008 */
|
2017-12-05 13:21:22 +01:00
|
|
|
} DUMMYUNIONNAME;
|
|
|
|
/* CONTEXT_CONTROL */
|
|
|
|
DWORD64 Sp; /* 100 */
|
|
|
|
DWORD64 Pc; /* 108 */
|
|
|
|
/* CONTEXT_FLOATING_POINT */
|
|
|
|
NEON128 V[32]; /* 110 */
|
|
|
|
DWORD Fpcr; /* 310 */
|
|
|
|
DWORD Fpsr; /* 314 */
|
|
|
|
/* CONTEXT_DEBUG_REGISTERS */
|
|
|
|
DWORD Bcr[ARM64_MAX_BREAKPOINTS]; /* 318 */
|
|
|
|
DWORD64 Bvr[ARM64_MAX_BREAKPOINTS]; /* 338 */
|
|
|
|
DWORD Wcr[ARM64_MAX_WATCHPOINTS]; /* 378 */
|
|
|
|
DWORD64 Wvr[ARM64_MAX_WATCHPOINTS]; /* 380 */
|
2013-01-16 00:41:25 +01:00
|
|
|
} CONTEXT;
|
|
|
|
|
2018-11-15 00:08:48 +01:00
|
|
|
BOOLEAN CDECL RtlAddFunctionTable(RUNTIME_FUNCTION*,DWORD,ULONG_PTR);
|
|
|
|
BOOLEAN CDECL RtlDeleteFunctionTable(RUNTIME_FUNCTION*);
|
|
|
|
|
2013-01-16 00:41:25 +01:00
|
|
|
#endif /* __aarch64__ */
|
|
|
|
|
2005-06-16 11:45:36 +02:00
|
|
|
|
1999-07-31 21:22:25 +02:00
|
|
|
/* Mips context definitions */
|
2010-10-29 16:34:47 +02:00
|
|
|
#if defined(_MIPS_) || defined(__MIPS__) || defined(__mips__)
|
1999-07-31 21:22:25 +02:00
|
|
|
|
|
|
|
#define CONTEXT_R4000 0x00010000
|
|
|
|
|
|
|
|
#define CONTEXT_CONTROL (CONTEXT_R4000 | 0x00000001)
|
|
|
|
#define CONTEXT_FLOATING_POINT (CONTEXT_R4000 | 0x00000002)
|
|
|
|
#define CONTEXT_INTEGER (CONTEXT_R4000 | 0x00000004)
|
|
|
|
|
|
|
|
#define CONTEXT_FULL (CONTEXT_CONTROL | CONTEXT_FLOATING_POINT | CONTEXT_INTEGER)
|
|
|
|
|
2006-09-20 11:27:53 +02:00
|
|
|
#define EXCEPTION_READ_FAULT 0
|
|
|
|
#define EXCEPTION_WRITE_FAULT 1
|
|
|
|
#define EXCEPTION_EXECUTE_FAULT 8
|
|
|
|
|
1999-07-31 21:22:25 +02:00
|
|
|
typedef struct _CONTEXT
|
|
|
|
{
|
|
|
|
DWORD Argument[4];
|
|
|
|
/* These are selected by CONTEXT_FLOATING_POINT */
|
|
|
|
DWORD FltF0;
|
|
|
|
DWORD FltF1;
|
|
|
|
DWORD FltF2;
|
|
|
|
DWORD FltF3;
|
|
|
|
DWORD FltF4;
|
|
|
|
DWORD FltF5;
|
|
|
|
DWORD FltF6;
|
|
|
|
DWORD FltF7;
|
|
|
|
DWORD FltF8;
|
|
|
|
DWORD FltF9;
|
|
|
|
DWORD FltF10;
|
|
|
|
DWORD FltF11;
|
|
|
|
DWORD FltF12;
|
|
|
|
DWORD FltF13;
|
|
|
|
DWORD FltF14;
|
|
|
|
DWORD FltF15;
|
|
|
|
DWORD FltF16;
|
|
|
|
DWORD FltF17;
|
|
|
|
DWORD FltF18;
|
|
|
|
DWORD FltF19;
|
|
|
|
DWORD FltF20;
|
|
|
|
DWORD FltF21;
|
|
|
|
DWORD FltF22;
|
|
|
|
DWORD FltF23;
|
|
|
|
DWORD FltF24;
|
|
|
|
DWORD FltF25;
|
|
|
|
DWORD FltF26;
|
|
|
|
DWORD FltF27;
|
|
|
|
DWORD FltF28;
|
|
|
|
DWORD FltF29;
|
|
|
|
DWORD FltF30;
|
|
|
|
DWORD FltF31;
|
|
|
|
|
|
|
|
/* These are selected by CONTEXT_INTEGER */
|
|
|
|
DWORD IntZero;
|
|
|
|
DWORD IntAt;
|
|
|
|
DWORD IntV0;
|
|
|
|
DWORD IntV1;
|
|
|
|
DWORD IntA0;
|
|
|
|
DWORD IntA1;
|
|
|
|
DWORD IntA2;
|
|
|
|
DWORD IntA3;
|
|
|
|
DWORD IntT0;
|
|
|
|
DWORD IntT1;
|
|
|
|
DWORD IntT2;
|
|
|
|
DWORD IntT3;
|
|
|
|
DWORD IntT4;
|
|
|
|
DWORD IntT5;
|
|
|
|
DWORD IntT6;
|
|
|
|
DWORD IntT7;
|
|
|
|
DWORD IntS0;
|
|
|
|
DWORD IntS1;
|
|
|
|
DWORD IntS2;
|
|
|
|
DWORD IntS3;
|
|
|
|
DWORD IntS4;
|
|
|
|
DWORD IntS5;
|
|
|
|
DWORD IntS6;
|
|
|
|
DWORD IntS7;
|
|
|
|
DWORD IntT8;
|
|
|
|
DWORD IntT9;
|
|
|
|
DWORD IntK0;
|
|
|
|
DWORD IntK1;
|
|
|
|
DWORD IntGp;
|
|
|
|
DWORD IntSp;
|
|
|
|
DWORD IntS8;
|
|
|
|
DWORD IntRa;
|
|
|
|
DWORD IntLo;
|
|
|
|
DWORD IntHi;
|
|
|
|
|
|
|
|
/* These are selected by CONTEXT_FLOATING_POINT */
|
|
|
|
DWORD Fsr;
|
|
|
|
|
|
|
|
/* These are selected by CONTEXT_CONTROL */
|
|
|
|
DWORD Fir;
|
|
|
|
DWORD Psr;
|
|
|
|
|
|
|
|
DWORD ContextFlags;
|
|
|
|
DWORD Fill[2];
|
|
|
|
} CONTEXT;
|
|
|
|
|
|
|
|
#endif /* _MIPS_ */
|
|
|
|
|
|
|
|
/* PowerPC context definitions */
|
2003-07-15 22:46:40 +02:00
|
|
|
#ifdef __powerpc__
|
1999-06-26 20:35:34 +02:00
|
|
|
|
|
|
|
#define CONTEXT_CONTROL 0x0001
|
|
|
|
#define CONTEXT_FLOATING_POINT 0x0002
|
|
|
|
#define CONTEXT_INTEGER 0x0004
|
|
|
|
#define CONTEXT_DEBUG_REGISTERS 0x0008
|
|
|
|
#define CONTEXT_FULL (CONTEXT_CONTROL | CONTEXT_FLOATING_POINT | CONTEXT_INTEGER)
|
1997-01-01 18:29:55 +01:00
|
|
|
|
2006-09-20 11:27:53 +02:00
|
|
|
#define EXCEPTION_READ_FAULT 0
|
|
|
|
#define EXCEPTION_WRITE_FAULT 1
|
|
|
|
#define EXCEPTION_EXECUTE_FAULT 8
|
|
|
|
|
1999-06-26 20:35:34 +02:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
/* These are selected by CONTEXT_FLOATING_POINT */
|
|
|
|
double Fpr0;
|
|
|
|
double Fpr1;
|
|
|
|
double Fpr2;
|
|
|
|
double Fpr3;
|
|
|
|
double Fpr4;
|
|
|
|
double Fpr5;
|
|
|
|
double Fpr6;
|
|
|
|
double Fpr7;
|
|
|
|
double Fpr8;
|
|
|
|
double Fpr9;
|
|
|
|
double Fpr10;
|
|
|
|
double Fpr11;
|
|
|
|
double Fpr12;
|
|
|
|
double Fpr13;
|
|
|
|
double Fpr14;
|
|
|
|
double Fpr15;
|
|
|
|
double Fpr16;
|
|
|
|
double Fpr17;
|
|
|
|
double Fpr18;
|
|
|
|
double Fpr19;
|
|
|
|
double Fpr20;
|
|
|
|
double Fpr21;
|
|
|
|
double Fpr22;
|
|
|
|
double Fpr23;
|
|
|
|
double Fpr24;
|
|
|
|
double Fpr25;
|
|
|
|
double Fpr26;
|
|
|
|
double Fpr27;
|
|
|
|
double Fpr28;
|
|
|
|
double Fpr29;
|
|
|
|
double Fpr30;
|
|
|
|
double Fpr31;
|
|
|
|
double Fpscr;
|
|
|
|
|
|
|
|
/* These are selected by CONTEXT_INTEGER */
|
|
|
|
DWORD Gpr0;
|
|
|
|
DWORD Gpr1;
|
|
|
|
DWORD Gpr2;
|
|
|
|
DWORD Gpr3;
|
|
|
|
DWORD Gpr4;
|
|
|
|
DWORD Gpr5;
|
|
|
|
DWORD Gpr6;
|
|
|
|
DWORD Gpr7;
|
|
|
|
DWORD Gpr8;
|
|
|
|
DWORD Gpr9;
|
|
|
|
DWORD Gpr10;
|
|
|
|
DWORD Gpr11;
|
|
|
|
DWORD Gpr12;
|
|
|
|
DWORD Gpr13;
|
|
|
|
DWORD Gpr14;
|
|
|
|
DWORD Gpr15;
|
|
|
|
DWORD Gpr16;
|
|
|
|
DWORD Gpr17;
|
|
|
|
DWORD Gpr18;
|
|
|
|
DWORD Gpr19;
|
|
|
|
DWORD Gpr20;
|
|
|
|
DWORD Gpr21;
|
|
|
|
DWORD Gpr22;
|
|
|
|
DWORD Gpr23;
|
|
|
|
DWORD Gpr24;
|
|
|
|
DWORD Gpr25;
|
|
|
|
DWORD Gpr26;
|
|
|
|
DWORD Gpr27;
|
|
|
|
DWORD Gpr28;
|
|
|
|
DWORD Gpr29;
|
|
|
|
DWORD Gpr30;
|
|
|
|
DWORD Gpr31;
|
|
|
|
|
|
|
|
DWORD Cr;
|
|
|
|
DWORD Xer;
|
|
|
|
|
|
|
|
/* These are selected by CONTEXT_CONTROL */
|
|
|
|
DWORD Msr;
|
2002-08-30 02:00:57 +02:00
|
|
|
DWORD Iar; /* Instruction Address Register , aka PC ... */
|
1999-06-26 20:35:34 +02:00
|
|
|
DWORD Lr;
|
|
|
|
DWORD Ctr;
|
|
|
|
|
|
|
|
DWORD ContextFlags;
|
2003-05-08 05:48:08 +02:00
|
|
|
|
|
|
|
DWORD Dar; /* Fault registers for coredump */
|
|
|
|
DWORD Dsisr;
|
|
|
|
DWORD Trap; /* number of powerpc exception taken */
|
1999-06-26 20:35:34 +02:00
|
|
|
|
|
|
|
/* These are selected by CONTEXT_DEBUG_REGISTERS */
|
|
|
|
DWORD Dr0;
|
|
|
|
DWORD Dr1;
|
|
|
|
DWORD Dr2;
|
|
|
|
DWORD Dr3;
|
|
|
|
DWORD Dr4;
|
|
|
|
DWORD Dr5;
|
|
|
|
DWORD Dr6;
|
|
|
|
DWORD Dr7;
|
|
|
|
} CONTEXT;
|
|
|
|
|
1999-07-31 21:22:25 +02:00
|
|
|
typedef struct _STACK_FRAME_HEADER
|
|
|
|
{
|
|
|
|
DWORD BackChain;
|
|
|
|
DWORD GlueSaved1;
|
|
|
|
DWORD GlueSaved2;
|
|
|
|
DWORD Reserved1;
|
|
|
|
DWORD Spare1;
|
|
|
|
DWORD Spare2;
|
|
|
|
|
|
|
|
DWORD Parameter0;
|
|
|
|
DWORD Parameter1;
|
|
|
|
DWORD Parameter2;
|
|
|
|
DWORD Parameter3;
|
|
|
|
DWORD Parameter4;
|
|
|
|
DWORD Parameter5;
|
|
|
|
DWORD Parameter6;
|
|
|
|
DWORD Parameter7;
|
|
|
|
} STACK_FRAME_HEADER,*PSTACK_FRAME_HEADER;
|
|
|
|
|
2003-07-15 22:46:40 +02:00
|
|
|
#endif /* __powerpc__ */
|
1999-06-26 20:35:34 +02:00
|
|
|
|
|
|
|
#if !defined(CONTEXT_FULL) && !defined(RC_INVOKED)
|
|
|
|
#error You need to define a CONTEXT for your CPU
|
|
|
|
#endif
|
|
|
|
|
|
|
|
typedef CONTEXT *PCONTEXT;
|
1997-01-01 18:29:55 +01:00
|
|
|
|
2008-12-04 12:23:13 +01:00
|
|
|
NTSYSAPI void WINAPI RtlCaptureContext(CONTEXT*);
|
|
|
|
|
2018-06-06 20:30:16 +02:00
|
|
|
#define WOW64_CONTEXT_i386 0x00010000
|
|
|
|
#define WOW64_CONTEXT_i486 0x00010000
|
|
|
|
#define WOW64_CONTEXT_CONTROL (WOW64_CONTEXT_i386 | __MSABI_LONG(0x00000001))
|
|
|
|
#define WOW64_CONTEXT_INTEGER (WOW64_CONTEXT_i386 | __MSABI_LONG(0x00000002))
|
|
|
|
#define WOW64_CONTEXT_SEGMENTS (WOW64_CONTEXT_i386 | __MSABI_LONG(0x00000004))
|
|
|
|
#define WOW64_CONTEXT_FLOATING_POINT (WOW64_CONTEXT_i386 | __MSABI_LONG(0x00000008))
|
|
|
|
#define WOW64_CONTEXT_DEBUG_REGISTERS (WOW64_CONTEXT_i386 | __MSABI_LONG(0x00000010))
|
|
|
|
#define WOW64_CONTEXT_EXTENDED_REGISTERS (WOW64_CONTEXT_i386 | __MSABI_LONG(0x00000020))
|
|
|
|
#define WOW64_CONTEXT_FULL (WOW64_CONTEXT_CONTROL | WOW64_CONTEXT_INTEGER | WOW64_CONTEXT_SEGMENTS)
|
|
|
|
#define WOW64_CONTEXT_ALL (WOW64_CONTEXT_CONTROL | WOW64_CONTEXT_INTEGER | \
|
|
|
|
WOW64_CONTEXT_SEGMENTS | WOW64_CONTEXT_FLOATING_POINT | \
|
|
|
|
WOW64_CONTEXT_DEBUG_REGISTERS | WOW64_CONTEXT_EXTENDED_REGISTERS)
|
|
|
|
|
|
|
|
#define WOW64_CONTEXT_XSTATE (WOW64_CONTEXT_i386 | __MSABI_LONG(0x00000040))
|
|
|
|
|
|
|
|
#define WOW64_CONTEXT_EXCEPTION_ACTIVE 0x08000000
|
|
|
|
#define WOW64_CONTEXT_SERVICE_ACTIVE 0x10000000
|
|
|
|
#define WOW64_CONTEXT_EXCEPTION_REQUEST 0x40000000
|
|
|
|
#define WOW64_CONTEXT_EXCEPTION_REPORTING 0x80000000
|
|
|
|
|
|
|
|
#define WOW64_SIZE_OF_80387_REGISTERS 80
|
|
|
|
#define WOW64_MAXIMUM_SUPPORTED_EXTENSION 512
|
|
|
|
|
|
|
|
typedef struct _WOW64_FLOATING_SAVE_AREA
|
|
|
|
{
|
|
|
|
DWORD ControlWord;
|
|
|
|
DWORD StatusWord;
|
|
|
|
DWORD TagWord;
|
|
|
|
DWORD ErrorOffset;
|
|
|
|
DWORD ErrorSelector;
|
|
|
|
DWORD DataOffset;
|
|
|
|
DWORD DataSelector;
|
|
|
|
BYTE RegisterArea[WOW64_SIZE_OF_80387_REGISTERS];
|
|
|
|
DWORD Cr0NpxState;
|
|
|
|
} WOW64_FLOATING_SAVE_AREA, *PWOW64_FLOATING_SAVE_AREA;
|
|
|
|
|
|
|
|
#include "pshpack4.h"
|
|
|
|
typedef struct _WOW64_CONTEXT
|
|
|
|
{
|
|
|
|
DWORD ContextFlags;
|
|
|
|
DWORD Dr0;
|
|
|
|
DWORD Dr1;
|
|
|
|
DWORD Dr2;
|
|
|
|
DWORD Dr3;
|
|
|
|
DWORD Dr6;
|
|
|
|
DWORD Dr7;
|
|
|
|
WOW64_FLOATING_SAVE_AREA FloatSave;
|
|
|
|
DWORD SegGs;
|
|
|
|
DWORD SegFs;
|
|
|
|
DWORD SegEs;
|
|
|
|
DWORD SegDs;
|
|
|
|
DWORD Edi;
|
|
|
|
DWORD Esi;
|
|
|
|
DWORD Ebx;
|
|
|
|
DWORD Edx;
|
|
|
|
DWORD Ecx;
|
|
|
|
DWORD Eax;
|
|
|
|
DWORD Ebp;
|
|
|
|
DWORD Eip;
|
|
|
|
DWORD SegCs;
|
|
|
|
DWORD EFlags;
|
|
|
|
DWORD Esp;
|
|
|
|
DWORD SegSs;
|
|
|
|
BYTE ExtendedRegisters[WOW64_MAXIMUM_SUPPORTED_EXTENSION];
|
|
|
|
} WOW64_CONTEXT, *PWOW64_CONTEXT;
|
|
|
|
#include "poppack.h"
|
|
|
|
|
|
|
|
|
2009-06-25 23:36:46 +02:00
|
|
|
/*
|
|
|
|
* Product types
|
|
|
|
*/
|
2012-06-13 17:44:09 +02:00
|
|
|
#define PRODUCT_UNDEFINED 0x00000000
|
|
|
|
#define PRODUCT_ULTIMATE 0x00000001
|
|
|
|
#define PRODUCT_HOME_BASIC 0x00000002
|
|
|
|
#define PRODUCT_HOME_PREMIUM 0x00000003
|
|
|
|
#define PRODUCT_ENTERPRISE 0x00000004
|
|
|
|
#define PRODUCT_HOME_BASIC_N 0x00000005
|
2009-06-25 23:36:46 +02:00
|
|
|
#define PRODUCT_BUSINESS 0x00000006
|
2012-06-13 17:44:09 +02:00
|
|
|
#define PRODUCT_STANDARD_SERVER 0x00000007
|
2009-06-25 23:36:46 +02:00
|
|
|
#define PRODUCT_DATACENTER_SERVER 0x00000008
|
2012-06-13 17:44:09 +02:00
|
|
|
#define PRODUCT_SMALLBUSINESS_SERVER 0x00000009
|
2009-06-25 23:36:46 +02:00
|
|
|
#define PRODUCT_ENTERPRISE_SERVER 0x0000000A
|
2012-06-13 17:44:09 +02:00
|
|
|
#define PRODUCT_STARTER 0x0000000B
|
|
|
|
#define PRODUCT_DATACENTER_SERVER_CORE 0x0000000C
|
|
|
|
#define PRODUCT_STANDARD_SERVER_CORE 0x0000000D
|
2009-06-25 23:36:46 +02:00
|
|
|
#define PRODUCT_ENTERPRISE_SERVER_CORE 0x0000000E
|
|
|
|
#define PRODUCT_ENTERPRISE_SERVER_IA64 0x0000000F
|
2012-06-13 17:44:09 +02:00
|
|
|
#define PRODUCT_BUSINESS_N 0x00000010
|
|
|
|
#define PRODUCT_WEB_SERVER 0x00000011
|
|
|
|
#define PRODUCT_CLUSTER_SERVER 0x00000012
|
|
|
|
#define PRODUCT_HOME_SERVER 0x00000013
|
|
|
|
#define PRODUCT_STORAGE_EXPRESS_SERVER 0x00000014
|
|
|
|
#define PRODUCT_STORAGE_STANDARD_SERVER 0x00000015
|
|
|
|
#define PRODUCT_STORAGE_WORKGROUP_SERVER 0x00000016
|
|
|
|
#define PRODUCT_STORAGE_ENTERPRISE_SERVER 0x00000017
|
|
|
|
#define PRODUCT_SERVER_FOR_SMALLBUSINESS 0x00000018
|
|
|
|
#define PRODUCT_SMALLBUSINESS_SERVER_PREMIUM 0x00000019
|
2009-06-25 23:36:46 +02:00
|
|
|
#define PRODUCT_HOME_PREMIUM_N 0x0000001A
|
2012-06-13 17:44:09 +02:00
|
|
|
#define PRODUCT_ENTERPRISE_N 0x0000001B
|
|
|
|
#define PRODUCT_ULTIMATE_N 0x0000001C
|
|
|
|
#define PRODUCT_WEB_SERVER_CORE 0x0000001D
|
2009-06-25 23:36:46 +02:00
|
|
|
#define PRODUCT_MEDIUMBUSINESS_SERVER_MANAGEMENT 0x0000001E
|
|
|
|
#define PRODUCT_MEDIUMBUSINESS_SERVER_SECURITY 0x0000001F
|
2012-06-13 17:44:09 +02:00
|
|
|
#define PRODUCT_MEDIUMBUSINESS_SERVER_MESSAGING 0x00000020
|
|
|
|
#define PRODUCT_SERVER_FOUNDATION 0x00000021
|
|
|
|
#define PRODUCT_HOME_PREMIUM_SERVER 0x00000022
|
2009-06-25 23:36:46 +02:00
|
|
|
#define PRODUCT_SERVER_FOR_SMALLBUSINESS_V 0x00000023
|
2012-06-13 17:44:09 +02:00
|
|
|
#define PRODUCT_STANDARD_SERVER_V 0x00000024
|
|
|
|
#define PRODUCT_DATACENTER_SERVER_V 0x00000025
|
2012-05-30 18:40:33 +02:00
|
|
|
#define PRODUCT_SERVER_V 0x00000025
|
2012-06-13 17:44:09 +02:00
|
|
|
#define PRODUCT_ENTERPRISE_SERVER_V 0x00000026
|
|
|
|
#define PRODUCT_DATACENTER_SERVER_CORE_V 0x00000027
|
2009-06-25 23:36:46 +02:00
|
|
|
#define PRODUCT_STANDARD_SERVER_CORE_V 0x00000028
|
2012-06-13 17:44:09 +02:00
|
|
|
#define PRODUCT_ENTERPRISE_SERVER_CORE_V 0x00000029
|
|
|
|
#define PRODUCT_HYPERV 0x0000002A
|
|
|
|
#define PRODUCT_STORAGE_EXPRESS_SERVER_CORE 0x0000002B
|
|
|
|
#define PRODUCT_STORAGE_STANDARD_SERVER_CORE 0x0000002C
|
|
|
|
#define PRODUCT_STORAGE_WORKGROUP_SERVER_CORE 0x0000002D
|
|
|
|
#define PRODUCT_STORAGE_ENTERPRISE_SERVER_CORE 0x0000002E
|
|
|
|
#define PRODUCT_STARTER_N 0x0000002F
|
|
|
|
#define PRODUCT_PROFESSIONAL 0x00000030
|
|
|
|
#define PRODUCT_PROFESSIONAL_N 0x00000031
|
|
|
|
#define PRODUCT_SB_SOLUTION_SERVER 0x00000032
|
|
|
|
#define PRODUCT_SERVER_FOR_SB_SOLUTIONS 0x00000033
|
|
|
|
#define PRODUCT_STANDARD_SERVER_SOLUTIONS 0x00000034
|
|
|
|
#define PRODUCT_STANDARD_SERVER_SOLUTIONS_CORE 0x00000035
|
|
|
|
#define PRODUCT_SB_SOLUTION_SERVER_EM 0x00000036
|
|
|
|
#define PRODUCT_SERVER_FOR_SB_SOLUTIONS_EM 0x00000037
|
|
|
|
#define PRODUCT_SOLUTION_EMBEDDEDSERVER 0x00000038
|
2015-05-20 14:31:43 +02:00
|
|
|
#define PRODUCT_SOLUTION_EMBEDDEDSERVER_CORE 0x00000039
|
|
|
|
#define PRODUCT_PROFESSIONAL_EMBEDDED 0x0000003A
|
2012-06-13 17:44:09 +02:00
|
|
|
#define PRODUCT_ESSENTIALBUSINESS_SERVER_MGMT 0x0000003B
|
|
|
|
#define PRODUCT_ESSENTIALBUSINESS_SERVER_ADDL 0x0000003C
|
|
|
|
#define PRODUCT_ESSENTIALBUSINESS_SERVER_MGMTSVC 0x0000003D
|
|
|
|
#define PRODUCT_ESSENTIALBUSINESS_SERVER_ADDLSVC 0x0000003E
|
|
|
|
#define PRODUCT_SMALLBUSINESS_SERVER_PREMIUM_CORE 0x0000003F
|
|
|
|
#define PRODUCT_CLUSTER_SERVER_V 0x00000040
|
|
|
|
#define PRODUCT_EMBEDDED 0x00000041
|
|
|
|
#define PRODUCT_STARTER_E 0x00000042
|
|
|
|
#define PRODUCT_HOME_BASIC_E 0x00000043
|
|
|
|
#define PRODUCT_HOME_PREMIUM_E 0x00000044
|
|
|
|
#define PRODUCT_PROFESSIONAL_E 0x00000045
|
|
|
|
#define PRODUCT_ENTERPRISE_E 0x00000046
|
|
|
|
#define PRODUCT_ULTIMATE_E 0x00000047
|
|
|
|
#define PRODUCT_ENTERPRISE_EVALUATION 0x00000048
|
|
|
|
#define PRODUCT_MULTIPOINT_STANDARD_SERVER 0x0000004C
|
|
|
|
#define PRODUCT_MULTIPOINT_PREMIUM_SERVER 0x0000004D
|
|
|
|
#define PRODUCT_STANDARD_EVALUATION_SERVER 0x0000004F
|
|
|
|
#define PRODUCT_DATACENTER_EVALUATION_SERVER 0x00000050
|
|
|
|
#define PRODUCT_ENTERPRISE_N_EVALUATION 0x00000054
|
2015-05-20 14:31:43 +02:00
|
|
|
#define PRODUCT_EMBEDDED_AUTOMOTIVE 0x00000055
|
|
|
|
#define PRODUCT_EMBEDDED_INDUSTRY_A 0x00000056
|
|
|
|
#define PRODUCT_THINPC 0x00000057
|
|
|
|
#define PRODUCT_EMBEDDED_A 0x00000058
|
|
|
|
#define PRODUCT_EMBEDDED_INDUSTRY 0x00000059
|
|
|
|
#define PRODUCT_EMBEDDED_E 0x0000005A
|
|
|
|
#define PRODUCT_EMBEDDED_INDUSTRY_E 0x0000005B
|
|
|
|
#define PRODUCT_EMBEDDED_INDUSTRY_A_E 0x0000005C
|
2012-06-13 17:44:09 +02:00
|
|
|
#define PRODUCT_STORAGE_WORKGROUP_EVALUATION_SERVER 0x0000005F
|
|
|
|
#define PRODUCT_STORAGE_STANDARD_EVALUATION_SERVER 0x00000060
|
|
|
|
#define PRODUCT_CORE_ARM 0x00000061
|
|
|
|
#define PRODUCT_CORE_N 0x00000062
|
|
|
|
#define PRODUCT_CORE_COUNTRYSPECIFIC 0x00000063
|
2015-05-20 14:31:43 +02:00
|
|
|
#define PRODUCT_CORE_SINGLELANGUAGE 0x00000064
|
2012-06-13 17:44:09 +02:00
|
|
|
#define PRODUCT_CORE_LANGUAGESPECIFIC 0x00000064
|
|
|
|
#define PRODUCT_CORE 0x00000065
|
|
|
|
#define PRODUCT_PROFESSIONAL_WMC 0x00000067
|
2015-05-20 14:31:43 +02:00
|
|
|
#define PRODUCT_MOBILE_CORE 0x00000068
|
|
|
|
#define PRODUCT_EMBEDDED_INDUSTRY_EVAL 0x00000069
|
|
|
|
#define PRODUCT_EMBEDDED_INDUSTRY_E_EVAL 0x0000006A
|
|
|
|
#define PRODUCT_EMBEDDED_EVAL 0x0000006B
|
|
|
|
#define PRODUCT_EMBEDDED_E_EVAL 0x0000006C
|
|
|
|
#define PRODUCT_NANO_SERVER 0x0000006D
|
|
|
|
#define PRODUCT_CLOUD_STORAGE_SERVER 0x0000006E
|
|
|
|
#define PRODUCT_CORE_CONNECTED 0x0000006F
|
|
|
|
#define PRODUCT_PROFESSIONAL_STUDENT 0x00000070
|
|
|
|
#define PRODUCT_CORE_CONNECTED_N 0x00000071
|
|
|
|
#define PRODUCT_PROFESSIONAL_STUDENT_N 0x00000072
|
|
|
|
#define PRODUCT_CORE_CONNECTED_SINGLELANGUAGE 0x00000073
|
|
|
|
#define PRODUCT_CORE_CONNECTED_COUNTRYSPECIFIC 0x00000074
|
|
|
|
#define PRODUCT_CONNECTED_CAR 0x00000075
|
|
|
|
#define PRODUCT_INDUSTRY_HANDHELD 0x00000076
|
|
|
|
#define PRODUCT_PPI_PRO 0x00000077
|
|
|
|
#define PRODUCT_ARM64_SERVER 0x00000078
|
|
|
|
#define PRODUCT_EDUCATION 0x00000079
|
|
|
|
#define PRODUCT_EDUCATION_N 0x0000007A
|
|
|
|
#define PRODUCT_IOTUAP 0x0000007B
|
|
|
|
#define PRODUCT_CLOUD_HOST_INFRASTRUCTURE_SERVER 0x0000007C
|
|
|
|
#define PRODUCT_ENTERPRISE_S 0x0000007D
|
|
|
|
#define PRODUCT_ENTERPRISE_S_N 0x0000007E
|
|
|
|
#define PRODUCT_PROFESSIONAL_S 0x0000007F
|
|
|
|
#define PRODUCT_PROFESSIONAL_S_N 0x00000080
|
|
|
|
#define PRODUCT_ENTERPRISE_S_EVALUATION 0x00000081
|
|
|
|
#define PRODUCT_ENTERPRISE_S_N_EVALUATION 0x00000082
|
2012-06-13 17:44:09 +02:00
|
|
|
#define PRODUCT_UNLICENSED 0xABCDABCD
|
2009-06-25 23:36:46 +02:00
|
|
|
|
|
|
|
|
2000-10-13 01:20:29 +02:00
|
|
|
/*
|
|
|
|
* Language IDs
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define MAKELCID(l, s) (MAKELONG(l, s))
|
|
|
|
|
|
|
|
#define MAKELANGID(p, s) ((((WORD)(s))<<10) | (WORD)(p))
|
|
|
|
#define PRIMARYLANGID(l) ((WORD)(l) & 0x3ff)
|
|
|
|
#define SUBLANGID(l) ((WORD)(l) >> 10)
|
|
|
|
|
|
|
|
#define LANGIDFROMLCID(lcid) ((WORD)(lcid))
|
|
|
|
#define SORTIDFROMLCID(lcid) ((WORD)((((DWORD)(lcid)) >> 16) & 0x0f))
|
|
|
|
|
|
|
|
#define LANG_SYSTEM_DEFAULT (MAKELANGID(LANG_NEUTRAL, SUBLANG_SYS_DEFAULT))
|
|
|
|
#define LANG_USER_DEFAULT (MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT))
|
|
|
|
#define LOCALE_SYSTEM_DEFAULT (MAKELCID(LANG_SYSTEM_DEFAULT, SORT_DEFAULT))
|
2002-06-01 01:06:46 +02:00
|
|
|
#define LOCALE_USER_DEFAULT (MAKELCID(LANG_USER_DEFAULT, SORT_DEFAULT))
|
2000-10-13 01:20:29 +02:00
|
|
|
#define LOCALE_NEUTRAL (MAKELCID(MAKELANGID(LANG_NEUTRAL,SUBLANG_NEUTRAL),SORT_DEFAULT))
|
2010-09-13 13:30:33 +02:00
|
|
|
#define LOCALE_INVARIANT (MAKELCID(MAKELANGID(LANG_INVARIANT,SUBLANG_NEUTRAL),SORT_DEFAULT))
|
2011-07-31 14:51:21 +02:00
|
|
|
#define LOCALE_CUSTOM_DEFAULT (MAKELCID(MAKELANGID(LANG_NEUTRAL,SUBLANG_CUSTOM_DEFAULT),SORT_DEFAULT))
|
|
|
|
#define LOCALE_CUSTOM_UNSPECIFIED (MAKELCID(MAKELANGID(LANG_NEUTRAL,SUBLANG_CUSTOM_UNSPECIFIED),SORT_DEFAULT))
|
|
|
|
#define LOCALE_CUSTOM_UI_DEFAULT (MAKELCID(MAKELANGID(LANG_NEUTRAL,SUBLANG_UI_CUSTOM_DEFAULT),SORT_DEFAULT))
|
2012-03-18 19:28:41 +01:00
|
|
|
#define LOCALE_NAME_MAX_LENGTH 85
|
2011-07-31 14:51:21 +02:00
|
|
|
|
2000-10-13 01:20:29 +02:00
|
|
|
|
2008-05-09 02:22:03 +02:00
|
|
|
#define UNREFERENCED_PARAMETER(u) (void)(u)
|
|
|
|
#define DBG_UNREFERENCED_PARAMETER(u) (void)(u)
|
|
|
|
#define DBG_UNREFERENCED_LOCAL_VARIABLE(u) (void)(u)
|
2002-10-02 21:46:45 +02:00
|
|
|
|
2011-11-07 16:42:25 +01:00
|
|
|
#include <winnt.rh>
|
2000-10-13 01:20:29 +02:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Definitions for IsTextUnicode()
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define IS_TEXT_UNICODE_ASCII16 0x0001
|
|
|
|
#define IS_TEXT_UNICODE_STATISTICS 0x0002
|
|
|
|
#define IS_TEXT_UNICODE_CONTROLS 0x0004
|
|
|
|
#define IS_TEXT_UNICODE_SIGNATURE 0x0008
|
|
|
|
#define IS_TEXT_UNICODE_UNICODE_MASK 0x000F
|
|
|
|
#define IS_TEXT_UNICODE_REVERSE_ASCII16 0x0010
|
|
|
|
#define IS_TEXT_UNICODE_REVERSE_STATISTICS 0x0020
|
|
|
|
#define IS_TEXT_UNICODE_REVERSE_CONTROLS 0x0040
|
|
|
|
#define IS_TEXT_UNICODE_REVERSE_SIGNATURE 0x0080
|
|
|
|
#define IS_TEXT_UNICODE_REVERSE_MASK 0x00F0
|
|
|
|
#define IS_TEXT_UNICODE_ILLEGAL_CHARS 0x0100
|
|
|
|
#define IS_TEXT_UNICODE_ODD_LENGTH 0x0200
|
|
|
|
#define IS_TEXT_UNICODE_DBCS_LEADBYTE 0x0400
|
|
|
|
#define IS_TEXT_UNICODE_NOT_UNICODE_MASK 0x0F00
|
|
|
|
#define IS_TEXT_UNICODE_NULL_BYTES 0x1000
|
|
|
|
#define IS_TEXT_UNICODE_NOT_ASCII_MASK 0xF000
|
|
|
|
|
Release 980104
Sat Jan 3 17:15:56 1998 Alexandre Julliard <julliard@lrc.epfl.ch>
* [debugger/db_disasm.c]
Added cpuid and cmpxchg instructions.
* [if1632/builtin.c] [relay32/builtin32.c]
Fixed broken -dll option with Win32 DLLs.
* [include/heap.h]
Added SYSTEM_LOCK/SYSTEM_UNLOCK macros.
* [configure.in] [misc/lstr.c]
Added check for wctype.h.
Commented out --enable-ipc option (IPC code has been broken for a
long time anyway).
* [scheduler/critsection.c] [scheduler/event.c]
[scheduler/mutex.c] [scheduler/semaphore.c]
Implemented Win32 synchronization objects.
* [scheduler/synchro.c]
Implemented WaitForMultipleObjects and related functions.
* [scheduler/thread.c]
If possible, use clone() in CreateThread().
* [scheduler/thread.c] [scheduler/process.c]
Made thread and process waitable objects.
Thread and process id values are now different from the pointers
they represent.
* [win32/k32obj.c]
Moved to scheduler directory.
Added function table for waiting operations on objects.
* [files/file.c] [memory/virtual.c]
Added new K32OBJ function table.
Sun Jan 1 16:48:23 1997 Andreas Mohr <100.30936@germany.net>
* [files/file.c]
Fixed my patch for GetTempFileName16() as needed.
It was ...Name32A() that didn't work properly, not ...Name16().
* [graphics/x11drv/brush.c]
Fixed a BadMatch error.
* [msdos/int21.c]
Fixed INT21_FindNextFCB() to get correct volume labels e.g.
in "file open" dialog.
* [multimedia/joystick.c] [relay32/winmm.spec]
Stub JoyGetPosEx().
* [scheduler/process.c] [relay32/kernel32.spec]
Implemented RegisterServiceProcess().
Wed Dec 31 11:14:43 1997 Lawson Whitney <lawson_whitney@juno.com>
* [if1632/kernel.spec] [if1632/relay.c]
Define CallProcEx32w - Thanks to Marcus Meissner for his excellent
CallProc32W.
* [loader/module.c]
Take a shot at defining FreeLibrary32W.
Sun Dec 28 12:44:04 1997 Kai Morich <kai.morich@rhein-neckar.netsurf.de>
* [controls/menu.c]
Menu modification from WM_INITMENUPOPUP message fixed.
Menu items now can have different wID and hSubMenu (Win95 behavior).
* [misc/cpu.c]
Improved IsProcessorFeaturePresent.
Sun Dec 28 03:21:08 1997 Ove Kaaven <ovek@main.arcticnet.no>
* [include/winsock.h] [misc/winsock.c]
Fixed WS_SOL_SOCKET for setsockopt(), and made select() return
empty fd_sets if timeout.
* [objects/palette.c]
AnimatePalette() bailed out if entire palette is animated. Fixed.
* [objects/dib.c]
Added some code to SetDIBitsToDevice() and its helpers to fix
some offseting problems.
* [objects/cursoricon.c]
Made CreateCursor32() convert the instance handle properly. Made
DestroyCursor() return correct success status.
Wed Dec 24 17:56:34 1997 Dimitrie O. Paun <dimi@cs.toronto.edu>
* [windows/syscolor.c]
Added definition of GetSysColorPen16/32. This function does not
exist in the Win32 API but is a very close (and natural) relative
to GetSysColorBrush function. Moreover, it is *very* much used
within Wine since there are a lot of places where we need to draw
lines with the standard colors.
* [controls/button.c] [controls/combo.c] [controls/icontitle.c]
[controls/menu.c] [controls/progress.c] [controls/scroll.c]
[controls/updown.c] [graphics/painting.c] [misc/tweak.c]
[windows/defwnd.c] [windows/graphics.c] [windows/nonclient.c]
Replaced references to sysColorObjects with the appropriate
call to GetSysColorBrush32/GetSysColorPen32. There is no need to
expose the implementation of these functions, even within Wine.
This makes the code easier to understand, debug, maintain.
* [controls/uitools.c]
Modified most of the functions in this file to use the now
standard pens (i.e. GetSysColorPen32). These functions made
*heavy* use of standard pens so I expect a lot less
CreatePen/DeleteObject calls can do only good...:)
Plus some minor modifications (*no* functional changes though).
* [controls/updown.c]
Used the new DrawFrameControl32 function to paint the control.
I also deleted UDDOWN_DrawArrow since it was no longer required.
Tue Dec 23 00:03:33 1997 Steinar Hamre <steinarh@stud.fim.ntnu.no>
* [configure.in]
Added check for -lw.
* [include/wintypes.h] [tools/build.c]
Changes to make the assembly understandable for even sun as.
".ascii" -> ".string", "call %foo" -> "call *%foo",
"pushw/popw %[cdes]s" written out to ".byte 0x66\npushl/popl %[cdes]s".
* [memory/ldt.c]
#ifdef added so <sys/seg.h> will not be included on Solaris.
Mon Dec 22 18:55:19 1997 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
* [configure.in]
Added XF86DGA check.
* [multimedia/dsound.c][relay32/dsound.spec][include/dsound.h]
Started DirectSound. Only stubs for now.
* [graphics/ddraw.c][include/ddraw.h][relay32/ddraw.spec]
Started to implement DirectDraw. Mostly stubs, some
testcases work. Requires the XF86DGA extension to XFree86.
(check demo/blizdemo.exe from the Diablo CD-ROM).
* [files/drive.c]
Return correct "CDFS" fsname so Diablo is a bit happier.
Sun Dec 21 21:45:48 1997 Kevin Cozens <kcozens@interlog.com>
* [misc/registry.c]
Fixed bugs in the routines which read the Windows '95 registry
files. Added extra information regarding the format of the Windows
'95 registry files.
1998-01-04 18:49:09 +01:00
|
|
|
#define MAXIMUM_WAIT_OBJECTS 64
|
|
|
|
#define MAXIMUM_SUSPEND_COUNT 127
|
|
|
|
|
2006-02-15 11:50:58 +01:00
|
|
|
#define WT_EXECUTEDEFAULT 0x00
|
|
|
|
#define WT_EXECUTEINIOTHREAD 0x01
|
|
|
|
#define WT_EXECUTEINUITHREAD 0x02
|
|
|
|
#define WT_EXECUTEINWAITTHREAD 0x04
|
|
|
|
#define WT_EXECUTEONLYONCE 0x08
|
|
|
|
#define WT_EXECUTELONGFUNCTION 0x10
|
|
|
|
#define WT_EXECUTEINTIMERTHREAD 0x20
|
|
|
|
#define WT_EXECUTEINPERSISTENTIOTHREAD 0x40
|
|
|
|
#define WT_EXECUTEINPERSISTENTTHREAD 0x80
|
|
|
|
#define WT_EXECUTEINLONGTHREAD 0x10
|
|
|
|
#define WT_EXECUTEDELETEWAIT 0x08
|
2008-07-23 03:10:37 +02:00
|
|
|
#define WT_TRANSFER_IMPERSONATION 0x0100
|
2006-02-15 11:50:58 +01:00
|
|
|
|
Release 980104
Sat Jan 3 17:15:56 1998 Alexandre Julliard <julliard@lrc.epfl.ch>
* [debugger/db_disasm.c]
Added cpuid and cmpxchg instructions.
* [if1632/builtin.c] [relay32/builtin32.c]
Fixed broken -dll option with Win32 DLLs.
* [include/heap.h]
Added SYSTEM_LOCK/SYSTEM_UNLOCK macros.
* [configure.in] [misc/lstr.c]
Added check for wctype.h.
Commented out --enable-ipc option (IPC code has been broken for a
long time anyway).
* [scheduler/critsection.c] [scheduler/event.c]
[scheduler/mutex.c] [scheduler/semaphore.c]
Implemented Win32 synchronization objects.
* [scheduler/synchro.c]
Implemented WaitForMultipleObjects and related functions.
* [scheduler/thread.c]
If possible, use clone() in CreateThread().
* [scheduler/thread.c] [scheduler/process.c]
Made thread and process waitable objects.
Thread and process id values are now different from the pointers
they represent.
* [win32/k32obj.c]
Moved to scheduler directory.
Added function table for waiting operations on objects.
* [files/file.c] [memory/virtual.c]
Added new K32OBJ function table.
Sun Jan 1 16:48:23 1997 Andreas Mohr <100.30936@germany.net>
* [files/file.c]
Fixed my patch for GetTempFileName16() as needed.
It was ...Name32A() that didn't work properly, not ...Name16().
* [graphics/x11drv/brush.c]
Fixed a BadMatch error.
* [msdos/int21.c]
Fixed INT21_FindNextFCB() to get correct volume labels e.g.
in "file open" dialog.
* [multimedia/joystick.c] [relay32/winmm.spec]
Stub JoyGetPosEx().
* [scheduler/process.c] [relay32/kernel32.spec]
Implemented RegisterServiceProcess().
Wed Dec 31 11:14:43 1997 Lawson Whitney <lawson_whitney@juno.com>
* [if1632/kernel.spec] [if1632/relay.c]
Define CallProcEx32w - Thanks to Marcus Meissner for his excellent
CallProc32W.
* [loader/module.c]
Take a shot at defining FreeLibrary32W.
Sun Dec 28 12:44:04 1997 Kai Morich <kai.morich@rhein-neckar.netsurf.de>
* [controls/menu.c]
Menu modification from WM_INITMENUPOPUP message fixed.
Menu items now can have different wID and hSubMenu (Win95 behavior).
* [misc/cpu.c]
Improved IsProcessorFeaturePresent.
Sun Dec 28 03:21:08 1997 Ove Kaaven <ovek@main.arcticnet.no>
* [include/winsock.h] [misc/winsock.c]
Fixed WS_SOL_SOCKET for setsockopt(), and made select() return
empty fd_sets if timeout.
* [objects/palette.c]
AnimatePalette() bailed out if entire palette is animated. Fixed.
* [objects/dib.c]
Added some code to SetDIBitsToDevice() and its helpers to fix
some offseting problems.
* [objects/cursoricon.c]
Made CreateCursor32() convert the instance handle properly. Made
DestroyCursor() return correct success status.
Wed Dec 24 17:56:34 1997 Dimitrie O. Paun <dimi@cs.toronto.edu>
* [windows/syscolor.c]
Added definition of GetSysColorPen16/32. This function does not
exist in the Win32 API but is a very close (and natural) relative
to GetSysColorBrush function. Moreover, it is *very* much used
within Wine since there are a lot of places where we need to draw
lines with the standard colors.
* [controls/button.c] [controls/combo.c] [controls/icontitle.c]
[controls/menu.c] [controls/progress.c] [controls/scroll.c]
[controls/updown.c] [graphics/painting.c] [misc/tweak.c]
[windows/defwnd.c] [windows/graphics.c] [windows/nonclient.c]
Replaced references to sysColorObjects with the appropriate
call to GetSysColorBrush32/GetSysColorPen32. There is no need to
expose the implementation of these functions, even within Wine.
This makes the code easier to understand, debug, maintain.
* [controls/uitools.c]
Modified most of the functions in this file to use the now
standard pens (i.e. GetSysColorPen32). These functions made
*heavy* use of standard pens so I expect a lot less
CreatePen/DeleteObject calls can do only good...:)
Plus some minor modifications (*no* functional changes though).
* [controls/updown.c]
Used the new DrawFrameControl32 function to paint the control.
I also deleted UDDOWN_DrawArrow since it was no longer required.
Tue Dec 23 00:03:33 1997 Steinar Hamre <steinarh@stud.fim.ntnu.no>
* [configure.in]
Added check for -lw.
* [include/wintypes.h] [tools/build.c]
Changes to make the assembly understandable for even sun as.
".ascii" -> ".string", "call %foo" -> "call *%foo",
"pushw/popw %[cdes]s" written out to ".byte 0x66\npushl/popl %[cdes]s".
* [memory/ldt.c]
#ifdef added so <sys/seg.h> will not be included on Solaris.
Mon Dec 22 18:55:19 1997 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
* [configure.in]
Added XF86DGA check.
* [multimedia/dsound.c][relay32/dsound.spec][include/dsound.h]
Started DirectSound. Only stubs for now.
* [graphics/ddraw.c][include/ddraw.h][relay32/ddraw.spec]
Started to implement DirectDraw. Mostly stubs, some
testcases work. Requires the XF86DGA extension to XFree86.
(check demo/blizdemo.exe from the Diablo CD-ROM).
* [files/drive.c]
Return correct "CDFS" fsname so Diablo is a bit happier.
Sun Dec 21 21:45:48 1997 Kevin Cozens <kcozens@interlog.com>
* [misc/registry.c]
Fixed bugs in the routines which read the Windows '95 registry
files. Added extra information regarding the format of the Windows
'95 registry files.
1998-01-04 18:49:09 +01:00
|
|
|
|
1997-02-02 20:01:52 +01:00
|
|
|
#define EXCEPTION_CONTINUABLE 0
|
2007-11-30 19:04:08 +01:00
|
|
|
#define EXCEPTION_NONCONTINUABLE 0x01
|
2002-06-01 01:06:46 +02:00
|
|
|
|
1997-02-02 20:01:52 +01:00
|
|
|
/*
|
2002-06-01 01:06:46 +02:00
|
|
|
* The exception record used by Win32 to give additional information
|
1997-02-02 20:01:52 +01:00
|
|
|
* about exception to exception handlers.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define EXCEPTION_MAXIMUM_PARAMETERS 15
|
|
|
|
|
2005-02-24 14:15:36 +01:00
|
|
|
typedef struct _EXCEPTION_RECORD
|
1997-02-02 20:01:52 +01:00
|
|
|
{
|
|
|
|
DWORD ExceptionCode;
|
|
|
|
DWORD ExceptionFlags;
|
2005-02-24 14:15:36 +01:00
|
|
|
struct _EXCEPTION_RECORD *ExceptionRecord;
|
1997-02-02 20:01:52 +01:00
|
|
|
|
2005-02-24 14:15:36 +01:00
|
|
|
PVOID ExceptionAddress;
|
1997-02-02 20:01:52 +01:00
|
|
|
DWORD NumberParameters;
|
2005-02-24 14:15:36 +01:00
|
|
|
ULONG_PTR ExceptionInformation[EXCEPTION_MAXIMUM_PARAMETERS];
|
1997-02-02 20:01:52 +01:00
|
|
|
} EXCEPTION_RECORD, *PEXCEPTION_RECORD;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The exception pointers structure passed to exception filters
|
|
|
|
* in except() and the UnhandledExceptionFilter().
|
|
|
|
*/
|
2002-06-01 01:06:46 +02:00
|
|
|
|
|
|
|
typedef struct _EXCEPTION_POINTERS
|
1997-02-02 20:01:52 +01:00
|
|
|
{
|
|
|
|
PEXCEPTION_RECORD ExceptionRecord;
|
|
|
|
PCONTEXT ContextRecord;
|
|
|
|
} EXCEPTION_POINTERS, *PEXCEPTION_POINTERS;
|
|
|
|
|
1999-05-12 14:47:01 +02:00
|
|
|
|
|
|
|
/*
|
2002-06-01 01:06:46 +02:00
|
|
|
* The exception frame, used for registering exception handlers
|
|
|
|
* Win32 cares only about this, but compilers generally emit
|
1999-05-12 14:47:01 +02:00
|
|
|
* larger exception frames for their own use.
|
|
|
|
*/
|
|
|
|
|
2003-08-28 05:07:56 +02:00
|
|
|
struct _EXCEPTION_REGISTRATION_RECORD;
|
1999-05-12 14:47:01 +02:00
|
|
|
|
2003-08-28 05:07:56 +02:00
|
|
|
typedef DWORD (*PEXCEPTION_HANDLER)(PEXCEPTION_RECORD,struct _EXCEPTION_REGISTRATION_RECORD*,
|
|
|
|
PCONTEXT,struct _EXCEPTION_REGISTRATION_RECORD **);
|
1999-05-12 14:47:01 +02:00
|
|
|
|
2003-08-28 05:07:56 +02:00
|
|
|
typedef struct _EXCEPTION_REGISTRATION_RECORD
|
1999-05-12 14:47:01 +02:00
|
|
|
{
|
2003-08-28 05:07:56 +02:00
|
|
|
struct _EXCEPTION_REGISTRATION_RECORD *Prev;
|
1999-05-12 14:47:01 +02:00
|
|
|
PEXCEPTION_HANDLER Handler;
|
2004-08-22 04:07:13 +02:00
|
|
|
} EXCEPTION_REGISTRATION_RECORD;
|
1999-05-12 14:47:01 +02:00
|
|
|
|
1997-02-02 20:01:52 +01:00
|
|
|
/*
|
2005-03-23 14:15:18 +01:00
|
|
|
* function pointer to an exception filter
|
1997-02-02 20:01:52 +01:00
|
|
|
*/
|
|
|
|
|
2003-10-28 22:22:50 +01:00
|
|
|
typedef LONG (CALLBACK *PVECTORED_EXCEPTION_HANDLER)(PEXCEPTION_POINTERS ExceptionInfo);
|
1997-02-02 20:01:52 +01:00
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
typedef struct _NT_TIB
|
2000-01-12 05:59:42 +01:00
|
|
|
{
|
|
|
|
struct _EXCEPTION_REGISTRATION_RECORD *ExceptionList;
|
|
|
|
PVOID StackBase;
|
|
|
|
PVOID StackLimit;
|
|
|
|
PVOID SubSystemTib;
|
|
|
|
union {
|
|
|
|
PVOID FiberData;
|
|
|
|
DWORD Version;
|
|
|
|
} DUMMYUNIONNAME;
|
|
|
|
PVOID ArbitraryUserPointer;
|
|
|
|
struct _NT_TIB *Self;
|
|
|
|
} NT_TIB, *PNT_TIB;
|
|
|
|
|
1999-06-22 13:43:42 +02:00
|
|
|
struct _TEB;
|
1999-09-03 18:45:44 +02:00
|
|
|
|
2010-05-07 22:38:32 +02:00
|
|
|
#if defined(__i386__) && defined(__GNUC__) && ((__GNUC__ > 3) || ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 2)))
|
|
|
|
static FORCEINLINE struct _TEB * WINAPI NtCurrentTeb(void)
|
1999-06-22 13:43:42 +02:00
|
|
|
{
|
|
|
|
struct _TEB *teb;
|
|
|
|
__asm__(".byte 0x64\n\tmovl (0x18),%0" : "=r" (teb));
|
|
|
|
return teb;
|
|
|
|
}
|
2002-05-04 20:37:08 +02:00
|
|
|
#elif defined(__i386__) && defined(_MSC_VER)
|
2010-05-07 22:38:32 +02:00
|
|
|
static FORCEINLINE struct _TEB * WINAPI NtCurrentTeb(void)
|
2002-05-04 20:37:08 +02:00
|
|
|
{
|
|
|
|
struct _TEB *teb;
|
|
|
|
__asm mov eax, fs:[0x18];
|
|
|
|
__asm mov teb, eax;
|
|
|
|
return teb;
|
|
|
|
}
|
2016-07-27 17:42:29 +02:00
|
|
|
#elif defined(__x86_64__) && defined(__GNUC__)
|
2010-05-07 22:38:32 +02:00
|
|
|
static FORCEINLINE struct _TEB * WINAPI NtCurrentTeb(void)
|
2008-11-26 14:42:48 +01:00
|
|
|
{
|
|
|
|
struct _TEB *teb;
|
|
|
|
__asm__(".byte 0x65\n\tmovq (0x30),%0" : "=r" (teb));
|
|
|
|
return teb;
|
|
|
|
}
|
2015-07-13 08:17:10 +02:00
|
|
|
#elif defined(__x86_64__) && defined(_MSC_VER)
|
|
|
|
#pragma intrinsic(__readgsqword)
|
|
|
|
static FORCEINLINE struct _TEB * WINAPI NtCurrentTeb(void)
|
|
|
|
{
|
|
|
|
return (struct _TEB *)__readgsqword(FIELD_OFFSET(NT_TIB, Self));
|
|
|
|
}
|
1999-06-22 13:43:42 +02:00
|
|
|
#else
|
2002-04-29 20:37:36 +02:00
|
|
|
extern struct _TEB * WINAPI NtCurrentTeb(void);
|
1999-06-22 13:43:42 +02:00
|
|
|
#endif
|
|
|
|
|
2002-12-17 22:06:25 +01:00
|
|
|
#ifdef NONAMELESSUNION
|
|
|
|
#define GetCurrentFiber() (((NT_TIB *)NtCurrentTeb())->u.FiberData)
|
|
|
|
#else
|
|
|
|
#define GetCurrentFiber() (((NT_TIB *)NtCurrentTeb())->FiberData)
|
|
|
|
#endif
|
|
|
|
#define GetFiberData() (*(void **)GetCurrentFiber())
|
2000-04-18 13:58:24 +02:00
|
|
|
|
2005-03-19 18:14:12 +01:00
|
|
|
#define TLS_MINIMUM_AVAILABLE 64
|
|
|
|
|
2018-05-22 23:25:25 +02:00
|
|
|
#define MAXIMUM_REPARSE_DATA_BUFFER_SIZE (16 * 1024)
|
|
|
|
|
|
|
|
#define IO_REPARSE_TAG_RESERVED_ZERO 0
|
|
|
|
#define IO_REPARSE_TAG_RESERVED_ONE 1
|
|
|
|
#define IO_REPARSE_TAG_RESERVED_TWO 2
|
|
|
|
|
|
|
|
#define IO_REPARSE_TAG_RESERVED_RANGE IO_REPARSE_TAG_RESERVED_TWO
|
|
|
|
|
|
|
|
#define IO_REPARSE_TAG_MOUNT_POINT __MSABI_LONG(0xA0000003)
|
|
|
|
#define IO_REPARSE_TAG_HSM __MSABI_LONG(0xC0000004)
|
|
|
|
#define IO_REPARSE_TAG_DRIVE_EXTENDER __MSABI_LONG(0x80000005)
|
|
|
|
#define IO_REPARSE_TAG_HSM2 __MSABI_LONG(0x80000006)
|
|
|
|
#define IO_REPARSE_TAG_SIS __MSABI_LONG(0x80000007)
|
|
|
|
#define IO_REPARSE_TAG_WIM __MSABI_LONG(0x80000008)
|
|
|
|
#define IO_REPARSE_TAG_CSV __MSABI_LONG(0x80000009)
|
|
|
|
#define IO_REPARSE_TAG_DFS __MSABI_LONG(0x8000000A)
|
|
|
|
#define IO_REPARSE_TAG_FILTER_MANAGER __MSABI_LONG(0x8000000B)
|
|
|
|
#define IO_REPARSE_TAG_SYMLINK __MSABI_LONG(0xA000000C)
|
|
|
|
#define IO_REPARSE_TAG_IIS_CACHE __MSABI_LONG(0xA0000010)
|
|
|
|
#define IO_REPARSE_TAG_DFSR __MSABI_LONG(0x80000012)
|
|
|
|
#define IO_REPARSE_TAG_DEDUP __MSABI_LONG(0x80000013)
|
|
|
|
#define IO_REPARSE_TAG_NFS __MSABI_LONG(0x80000014)
|
|
|
|
#define IO_REPARSE_TAG_FILE_PLACEHOLDER __MSABI_LONG(0x80000015)
|
|
|
|
#define IO_REPARSE_TAG_WOF __MSABI_LONG(0x80000017)
|
|
|
|
#define IO_REPARSE_TAG_WCI __MSABI_LONG(0x80000018)
|
|
|
|
#define IO_REPARSE_TAG_WCI_1 __MSABI_LONG(0x90001018)
|
|
|
|
#define IO_REPARSE_TAG_GLOBAL_REPARSE __MSABI_LONG(0xA0000019)
|
|
|
|
#define IO_REPARSE_TAG_CLOUD __MSABI_LONG(0x9000001A)
|
|
|
|
#define IO_REPARSE_TAG_CLOUD_1 __MSABI_LONG(0x9000101A)
|
|
|
|
#define IO_REPARSE_TAG_CLOUD_2 __MSABI_LONG(0x9000201A)
|
|
|
|
#define IO_REPARSE_TAG_CLOUD_3 __MSABI_LONG(0x9000301A)
|
|
|
|
#define IO_REPARSE_TAG_CLOUD_4 __MSABI_LONG(0x9000401A)
|
|
|
|
#define IO_REPARSE_TAG_CLOUD_5 __MSABI_LONG(0x9000501A)
|
|
|
|
#define IO_REPARSE_TAG_CLOUD_6 __MSABI_LONG(0x9000601A)
|
|
|
|
#define IO_REPARSE_TAG_CLOUD_7 __MSABI_LONG(0x9000701A)
|
|
|
|
#define IO_REPARSE_TAG_CLOUD_8 __MSABI_LONG(0x9000801A)
|
|
|
|
#define IO_REPARSE_TAG_CLOUD_9 __MSABI_LONG(0x9000901A)
|
|
|
|
#define IO_REPARSE_TAG_CLOUD_A __MSABI_LONG(0x9000A01A)
|
|
|
|
#define IO_REPARSE_TAG_CLOUD_B __MSABI_LONG(0x9000B01A)
|
|
|
|
#define IO_REPARSE_TAG_CLOUD_C __MSABI_LONG(0x9000C01A)
|
|
|
|
#define IO_REPARSE_TAG_CLOUD_D __MSABI_LONG(0x9000D01A)
|
|
|
|
#define IO_REPARSE_TAG_CLOUD_E __MSABI_LONG(0x9000E01A)
|
|
|
|
#define IO_REPARSE_TAG_CLOUD_F __MSABI_LONG(0x9000F01A)
|
|
|
|
#define IO_REPARSE_TAG_CLOUD_MASK __MSABI_LONG(0x0000F000)
|
|
|
|
#define IO_REPARSE_TAG_APPEXECLINK __MSABI_LONG(0x8000001B)
|
|
|
|
#define IO_REPARSE_TAG_GVFS __MSABI_LONG(0x9000001C)
|
|
|
|
#define IO_REPARSE_TAG_STORAGE_SYNC __MSABI_LONG(0x8000001E)
|
|
|
|
#define IO_REPARSE_TAG_WCI_TOMBSTONE __MSABI_LONG(0xA000001F)
|
|
|
|
#define IO_REPARSE_TAG_UNHANDLED __MSABI_LONG(0x80000020)
|
|
|
|
#define IO_REPARSE_TAG_ONEDRIVE __MSABI_LONG(0x80000021)
|
|
|
|
#define IO_REPARSE_TAG_GVFS_TOMBSTONE __MSABI_LONG(0xA0000022)
|
|
|
|
|
2000-04-18 13:58:24 +02:00
|
|
|
/*
|
|
|
|
* File formats definitions
|
|
|
|
*/
|
|
|
|
|
2003-08-28 23:43:34 +02:00
|
|
|
#include <pshpack2.h>
|
2000-04-18 13:58:24 +02:00
|
|
|
typedef struct _IMAGE_DOS_HEADER {
|
|
|
|
WORD e_magic; /* 00: MZ Header signature */
|
|
|
|
WORD e_cblp; /* 02: Bytes on last page of file */
|
|
|
|
WORD e_cp; /* 04: Pages in file */
|
|
|
|
WORD e_crlc; /* 06: Relocations */
|
|
|
|
WORD e_cparhdr; /* 08: Size of header in paragraphs */
|
|
|
|
WORD e_minalloc; /* 0a: Minimum extra paragraphs needed */
|
|
|
|
WORD e_maxalloc; /* 0c: Maximum extra paragraphs needed */
|
|
|
|
WORD e_ss; /* 0e: Initial (relative) SS value */
|
|
|
|
WORD e_sp; /* 10: Initial SP value */
|
|
|
|
WORD e_csum; /* 12: Checksum */
|
|
|
|
WORD e_ip; /* 14: Initial IP value */
|
|
|
|
WORD e_cs; /* 16: Initial (relative) CS value */
|
|
|
|
WORD e_lfarlc; /* 18: File address of relocation table */
|
|
|
|
WORD e_ovno; /* 1a: Overlay number */
|
|
|
|
WORD e_res[4]; /* 1c: Reserved words */
|
|
|
|
WORD e_oemid; /* 24: OEM identifier (for e_oeminfo) */
|
|
|
|
WORD e_oeminfo; /* 26: OEM information; e_oemid specific */
|
|
|
|
WORD e_res2[10]; /* 28: Reserved words */
|
|
|
|
DWORD e_lfanew; /* 3c: Offset to extended header */
|
|
|
|
} IMAGE_DOS_HEADER, *PIMAGE_DOS_HEADER;
|
2003-08-28 23:43:34 +02:00
|
|
|
#include <poppack.h>
|
2000-04-18 13:58:24 +02:00
|
|
|
|
|
|
|
#define IMAGE_DOS_SIGNATURE 0x5A4D /* MZ */
|
|
|
|
#define IMAGE_OS2_SIGNATURE 0x454E /* NE */
|
|
|
|
#define IMAGE_OS2_SIGNATURE_LE 0x454C /* LE */
|
|
|
|
#define IMAGE_OS2_SIGNATURE_LX 0x584C /* LX */
|
|
|
|
#define IMAGE_VXD_SIGNATURE 0x454C /* LE */
|
|
|
|
#define IMAGE_NT_SIGNATURE 0x00004550 /* PE00 */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is the Windows executable (NE) header.
|
|
|
|
* the name IMAGE_OS2_HEADER is misleading, but in the SDK this way.
|
|
|
|
*/
|
2003-08-28 23:43:34 +02:00
|
|
|
#include <pshpack2.h>
|
2002-06-01 01:06:46 +02:00
|
|
|
typedef struct
|
2000-04-18 13:58:24 +02:00
|
|
|
{
|
|
|
|
WORD ne_magic; /* 00 NE signature 'NE' */
|
|
|
|
BYTE ne_ver; /* 02 Linker version number */
|
|
|
|
BYTE ne_rev; /* 03 Linker revision number */
|
|
|
|
WORD ne_enttab; /* 04 Offset to entry table relative to NE */
|
|
|
|
WORD ne_cbenttab; /* 06 Length of entry table in bytes */
|
|
|
|
LONG ne_crc; /* 08 Checksum */
|
|
|
|
WORD ne_flags; /* 0c Flags about segments in this file */
|
|
|
|
WORD ne_autodata; /* 0e Automatic data segment number */
|
|
|
|
WORD ne_heap; /* 10 Initial size of local heap */
|
|
|
|
WORD ne_stack; /* 12 Initial size of stack */
|
|
|
|
DWORD ne_csip; /* 14 Initial CS:IP */
|
|
|
|
DWORD ne_sssp; /* 18 Initial SS:SP */
|
|
|
|
WORD ne_cseg; /* 1c # of entries in segment table */
|
|
|
|
WORD ne_cmod; /* 1e # of entries in module reference tab. */
|
|
|
|
WORD ne_cbnrestab; /* 20 Length of nonresident-name table */
|
|
|
|
WORD ne_segtab; /* 22 Offset to segment table */
|
|
|
|
WORD ne_rsrctab; /* 24 Offset to resource table */
|
|
|
|
WORD ne_restab; /* 26 Offset to resident-name table */
|
|
|
|
WORD ne_modtab; /* 28 Offset to module reference table */
|
|
|
|
WORD ne_imptab; /* 2a Offset to imported name table */
|
|
|
|
DWORD ne_nrestab; /* 2c Offset to nonresident-name table */
|
|
|
|
WORD ne_cmovent; /* 30 # of movable entry points */
|
|
|
|
WORD ne_align; /* 32 Logical sector alignment shift count */
|
|
|
|
WORD ne_cres; /* 34 # of resource segments */
|
|
|
|
BYTE ne_exetyp; /* 36 Flags indicating target OS */
|
|
|
|
BYTE ne_flagsothers; /* 37 Additional information flags */
|
2002-10-23 20:50:10 +02:00
|
|
|
WORD ne_pretthunks; /* 38 Offset to return thunks */
|
|
|
|
WORD ne_psegrefbytes; /* 3a Offset to segment ref. bytes */
|
2000-04-18 13:58:24 +02:00
|
|
|
WORD ne_swaparea; /* 3c Reserved by Microsoft */
|
|
|
|
WORD ne_expver; /* 3e Expected Windows version number */
|
2002-10-23 20:50:10 +02:00
|
|
|
} IMAGE_OS2_HEADER, *PIMAGE_OS2_HEADER;
|
2003-08-28 23:43:34 +02:00
|
|
|
#include <poppack.h>
|
2000-04-18 13:58:24 +02:00
|
|
|
|
2003-08-28 23:43:34 +02:00
|
|
|
#include <pshpack2.h>
|
2000-04-18 13:58:24 +02:00
|
|
|
typedef struct _IMAGE_VXD_HEADER {
|
|
|
|
WORD e32_magic;
|
|
|
|
BYTE e32_border;
|
|
|
|
BYTE e32_worder;
|
|
|
|
DWORD e32_level;
|
|
|
|
WORD e32_cpu;
|
|
|
|
WORD e32_os;
|
|
|
|
DWORD e32_ver;
|
|
|
|
DWORD e32_mflags;
|
|
|
|
DWORD e32_mpages;
|
|
|
|
DWORD e32_startobj;
|
|
|
|
DWORD e32_eip;
|
|
|
|
DWORD e32_stackobj;
|
|
|
|
DWORD e32_esp;
|
|
|
|
DWORD e32_pagesize;
|
|
|
|
DWORD e32_lastpagesize;
|
|
|
|
DWORD e32_fixupsize;
|
|
|
|
DWORD e32_fixupsum;
|
|
|
|
DWORD e32_ldrsize;
|
|
|
|
DWORD e32_ldrsum;
|
|
|
|
DWORD e32_objtab;
|
|
|
|
DWORD e32_objcnt;
|
|
|
|
DWORD e32_objmap;
|
|
|
|
DWORD e32_itermap;
|
|
|
|
DWORD e32_rsrctab;
|
|
|
|
DWORD e32_rsrccnt;
|
|
|
|
DWORD e32_restab;
|
|
|
|
DWORD e32_enttab;
|
|
|
|
DWORD e32_dirtab;
|
|
|
|
DWORD e32_dircnt;
|
|
|
|
DWORD e32_fpagetab;
|
|
|
|
DWORD e32_frectab;
|
|
|
|
DWORD e32_impmod;
|
|
|
|
DWORD e32_impmodcnt;
|
|
|
|
DWORD e32_impproc;
|
|
|
|
DWORD e32_pagesum;
|
|
|
|
DWORD e32_datapage;
|
|
|
|
DWORD e32_preload;
|
|
|
|
DWORD e32_nrestab;
|
|
|
|
DWORD e32_cbnrestab;
|
|
|
|
DWORD e32_nressum;
|
|
|
|
DWORD e32_autodata;
|
|
|
|
DWORD e32_debuginfo;
|
|
|
|
DWORD e32_debuglen;
|
|
|
|
DWORD e32_instpreload;
|
|
|
|
DWORD e32_instdemand;
|
|
|
|
DWORD e32_heapsize;
|
2002-10-23 20:50:10 +02:00
|
|
|
BYTE e32_res3[12];
|
2000-04-18 13:58:24 +02:00
|
|
|
DWORD e32_winresoff;
|
|
|
|
DWORD e32_winreslen;
|
|
|
|
WORD e32_devid;
|
|
|
|
WORD e32_ddkver;
|
|
|
|
} IMAGE_VXD_HEADER, *PIMAGE_VXD_HEADER;
|
2003-08-28 23:43:34 +02:00
|
|
|
#include <poppack.h>
|
2000-04-18 13:58:24 +02:00
|
|
|
|
|
|
|
/* These defines describe the meanings of the bits in the Characteristics
|
|
|
|
field */
|
|
|
|
|
|
|
|
#define IMAGE_FILE_RELOCS_STRIPPED 0x0001 /* No relocation info */
|
|
|
|
#define IMAGE_FILE_EXECUTABLE_IMAGE 0x0002
|
|
|
|
#define IMAGE_FILE_LINE_NUMS_STRIPPED 0x0004
|
|
|
|
#define IMAGE_FILE_LOCAL_SYMS_STRIPPED 0x0008
|
2002-02-27 22:35:36 +01:00
|
|
|
#define IMAGE_FILE_AGGRESIVE_WS_TRIM 0x0010
|
|
|
|
#define IMAGE_FILE_LARGE_ADDRESS_AWARE 0x0020
|
2000-04-18 13:58:24 +02:00
|
|
|
#define IMAGE_FILE_16BIT_MACHINE 0x0040
|
|
|
|
#define IMAGE_FILE_BYTES_REVERSED_LO 0x0080
|
|
|
|
#define IMAGE_FILE_32BIT_MACHINE 0x0100
|
|
|
|
#define IMAGE_FILE_DEBUG_STRIPPED 0x0200
|
2002-02-27 22:35:36 +01:00
|
|
|
#define IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP 0x0400
|
2003-07-19 05:01:04 +02:00
|
|
|
#define IMAGE_FILE_NET_RUN_FROM_SWAP 0x0800
|
2000-04-18 13:58:24 +02:00
|
|
|
#define IMAGE_FILE_SYSTEM 0x1000
|
|
|
|
#define IMAGE_FILE_DLL 0x2000
|
2002-02-27 22:35:36 +01:00
|
|
|
#define IMAGE_FILE_UP_SYSTEM_ONLY 0x4000
|
2000-04-18 13:58:24 +02:00
|
|
|
#define IMAGE_FILE_BYTES_REVERSED_HI 0x8000
|
|
|
|
|
|
|
|
/* These are the settings of the Machine field. */
|
|
|
|
#define IMAGE_FILE_MACHINE_UNKNOWN 0
|
2003-07-19 05:01:04 +02:00
|
|
|
#define IMAGE_FILE_MACHINE_I860 0x014d
|
|
|
|
#define IMAGE_FILE_MACHINE_I386 0x014c
|
|
|
|
#define IMAGE_FILE_MACHINE_R3000 0x0162
|
|
|
|
#define IMAGE_FILE_MACHINE_R4000 0x0166
|
|
|
|
#define IMAGE_FILE_MACHINE_R10000 0x0168
|
|
|
|
#define IMAGE_FILE_MACHINE_WCEMIPSV2 0x0169
|
|
|
|
#define IMAGE_FILE_MACHINE_ALPHA 0x0184
|
|
|
|
#define IMAGE_FILE_MACHINE_SH3 0x01a2
|
|
|
|
#define IMAGE_FILE_MACHINE_SH3DSP 0x01a3
|
|
|
|
#define IMAGE_FILE_MACHINE_SH3E 0x01a4
|
|
|
|
#define IMAGE_FILE_MACHINE_SH4 0x01a6
|
|
|
|
#define IMAGE_FILE_MACHINE_SH5 0x01a8
|
|
|
|
#define IMAGE_FILE_MACHINE_ARM 0x01c0
|
|
|
|
#define IMAGE_FILE_MACHINE_THUMB 0x01c2
|
2012-08-16 22:39:46 +02:00
|
|
|
#define IMAGE_FILE_MACHINE_ARMNT 0x01c4
|
2013-09-25 20:51:10 +02:00
|
|
|
#define IMAGE_FILE_MACHINE_ARM64 0xaa64
|
2003-07-19 05:01:04 +02:00
|
|
|
#define IMAGE_FILE_MACHINE_AM33 0x01d3
|
|
|
|
#define IMAGE_FILE_MACHINE_POWERPC 0x01f0
|
|
|
|
#define IMAGE_FILE_MACHINE_POWERPCFP 0x01f1
|
|
|
|
#define IMAGE_FILE_MACHINE_IA64 0x0200
|
|
|
|
#define IMAGE_FILE_MACHINE_MIPS16 0x0266
|
|
|
|
#define IMAGE_FILE_MACHINE_ALPHA64 0x0284
|
|
|
|
#define IMAGE_FILE_MACHINE_MIPSFPU 0x0366
|
|
|
|
#define IMAGE_FILE_MACHINE_MIPSFPU16 0x0466
|
|
|
|
#define IMAGE_FILE_MACHINE_AXP64 IMAGE_FILE_MACHINE_ALPHA64
|
|
|
|
#define IMAGE_FILE_MACHINE_TRICORE 0x0520
|
|
|
|
#define IMAGE_FILE_MACHINE_CEF 0x0cef
|
|
|
|
#define IMAGE_FILE_MACHINE_EBC 0x0ebc
|
|
|
|
#define IMAGE_FILE_MACHINE_AMD64 0x8664
|
|
|
|
#define IMAGE_FILE_MACHINE_M32R 0x9041
|
|
|
|
#define IMAGE_FILE_MACHINE_CEE 0xc0ee
|
2000-04-18 13:58:24 +02:00
|
|
|
|
2003-08-13 21:35:22 +02:00
|
|
|
#define IMAGE_SIZEOF_FILE_HEADER 20
|
|
|
|
#define IMAGE_SIZEOF_ROM_OPTIONAL_HEADER 56
|
|
|
|
#define IMAGE_SIZEOF_STD_OPTIONAL_HEADER 28
|
2005-07-19 13:44:32 +02:00
|
|
|
#define IMAGE_SIZEOF_NT_OPTIONAL32_HEADER 224
|
|
|
|
#define IMAGE_SIZEOF_NT_OPTIONAL64_HEADER 240
|
2003-08-13 21:35:22 +02:00
|
|
|
#define IMAGE_SIZEOF_SHORT_NAME 8
|
|
|
|
#define IMAGE_SIZEOF_SECTION_HEADER 40
|
|
|
|
#define IMAGE_SIZEOF_SYMBOL 18
|
|
|
|
#define IMAGE_SIZEOF_AUX_SYMBOL 18
|
|
|
|
#define IMAGE_SIZEOF_RELOCATION 10
|
|
|
|
#define IMAGE_SIZEOF_BASE_RELOCATION 8
|
|
|
|
#define IMAGE_SIZEOF_LINENUMBER 6
|
|
|
|
#define IMAGE_SIZEOF_ARCHIVE_MEMBER_HDR 60
|
2000-04-18 13:58:24 +02:00
|
|
|
|
|
|
|
/* Possible Magic values */
|
2005-07-19 13:44:32 +02:00
|
|
|
#define IMAGE_NT_OPTIONAL_HDR32_MAGIC 0x10b
|
|
|
|
#define IMAGE_NT_OPTIONAL_HDR64_MAGIC 0x20b
|
2000-04-18 13:58:24 +02:00
|
|
|
#define IMAGE_ROM_OPTIONAL_HDR_MAGIC 0x107
|
|
|
|
|
2005-07-19 13:44:32 +02:00
|
|
|
#ifdef _WIN64
|
|
|
|
#define IMAGE_SIZEOF_NT_OPTIONAL_HEADER IMAGE_SIZEOF_NT_OPTIONAL64_HEADER
|
|
|
|
#define IMAGE_NT_OPTIONAL_HDR_MAGIC IMAGE_NT_OPTIONAL_HDR64_MAGIC
|
|
|
|
#else
|
|
|
|
#define IMAGE_SIZEOF_NT_OPTIONAL_HEADER IMAGE_SIZEOF_NT_OPTIONAL32_HEADER
|
|
|
|
#define IMAGE_NT_OPTIONAL_HDR_MAGIC IMAGE_NT_OPTIONAL_HDR32_MAGIC
|
|
|
|
#endif
|
|
|
|
|
2000-04-18 13:58:24 +02:00
|
|
|
/* These are indexes into the DataDirectory array */
|
|
|
|
#define IMAGE_FILE_EXPORT_DIRECTORY 0
|
|
|
|
#define IMAGE_FILE_IMPORT_DIRECTORY 1
|
|
|
|
#define IMAGE_FILE_RESOURCE_DIRECTORY 2
|
|
|
|
#define IMAGE_FILE_EXCEPTION_DIRECTORY 3
|
|
|
|
#define IMAGE_FILE_SECURITY_DIRECTORY 4
|
|
|
|
#define IMAGE_FILE_BASE_RELOCATION_TABLE 5
|
|
|
|
#define IMAGE_FILE_DEBUG_DIRECTORY 6
|
|
|
|
#define IMAGE_FILE_DESCRIPTION_STRING 7
|
|
|
|
#define IMAGE_FILE_MACHINE_VALUE 8 /* Mips */
|
|
|
|
#define IMAGE_FILE_THREAD_LOCAL_STORAGE 9
|
|
|
|
#define IMAGE_FILE_CALLBACK_DIRECTORY 10
|
|
|
|
|
|
|
|
/* Directory Entries, indices into the DataDirectory array */
|
|
|
|
|
|
|
|
#define IMAGE_DIRECTORY_ENTRY_EXPORT 0
|
|
|
|
#define IMAGE_DIRECTORY_ENTRY_IMPORT 1
|
|
|
|
#define IMAGE_DIRECTORY_ENTRY_RESOURCE 2
|
|
|
|
#define IMAGE_DIRECTORY_ENTRY_EXCEPTION 3
|
|
|
|
#define IMAGE_DIRECTORY_ENTRY_SECURITY 4
|
|
|
|
#define IMAGE_DIRECTORY_ENTRY_BASERELOC 5
|
|
|
|
#define IMAGE_DIRECTORY_ENTRY_DEBUG 6
|
|
|
|
#define IMAGE_DIRECTORY_ENTRY_COPYRIGHT 7
|
|
|
|
#define IMAGE_DIRECTORY_ENTRY_GLOBALPTR 8 /* (MIPS GP) */
|
|
|
|
#define IMAGE_DIRECTORY_ENTRY_TLS 9
|
|
|
|
#define IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG 10
|
|
|
|
#define IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT 11
|
|
|
|
#define IMAGE_DIRECTORY_ENTRY_IAT 12 /* Import Address Table */
|
|
|
|
#define IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT 13
|
|
|
|
#define IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR 14
|
|
|
|
|
|
|
|
/* Subsystem Values */
|
|
|
|
|
2003-07-19 05:01:04 +02:00
|
|
|
#define IMAGE_SUBSYSTEM_UNKNOWN 0
|
|
|
|
#define IMAGE_SUBSYSTEM_NATIVE 1
|
|
|
|
#define IMAGE_SUBSYSTEM_WINDOWS_GUI 2 /* Windows GUI subsystem */
|
|
|
|
#define IMAGE_SUBSYSTEM_WINDOWS_CUI 3 /* Windows character subsystem */
|
|
|
|
#define IMAGE_SUBSYSTEM_OS2_CUI 5
|
|
|
|
#define IMAGE_SUBSYSTEM_POSIX_CUI 7
|
|
|
|
#define IMAGE_SUBSYSTEM_NATIVE_WINDOWS 8 /* native Win9x driver */
|
|
|
|
#define IMAGE_SUBSYSTEM_WINDOWS_CE_GUI 9 /* Windows CE subsystem */
|
|
|
|
#define IMAGE_SUBSYSTEM_EFI_APPLICATION 10
|
|
|
|
#define IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER 11
|
|
|
|
#define IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER 12
|
|
|
|
#define IMAGE_SUBSYSTEM_EFI_ROM 13
|
|
|
|
#define IMAGE_SUBSYSTEM_XBOX 14
|
2010-09-19 23:22:39 +02:00
|
|
|
#define IMAGE_SUBSYSTEM_WINDOWS_BOOT_APPLICATION 16
|
2000-04-18 13:58:24 +02:00
|
|
|
|
2005-07-19 13:44:32 +02:00
|
|
|
/* DLL Characteristics */
|
2006-11-17 04:23:14 +01:00
|
|
|
#define IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE 0x0040
|
|
|
|
#define IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY 0x0080
|
|
|
|
#define IMAGE_DLLCHARACTERISTICS_NX_COMPAT 0x0100
|
2005-07-19 13:44:32 +02:00
|
|
|
#define IMAGE_DLLCHARACTERISTICS_NO_ISOLATION 0x0200
|
|
|
|
#define IMAGE_DLLCHARACTERISTICS_NO_SEH 0x0400
|
|
|
|
#define IMAGE_DLLCHARACTERISTICS_NO_BIND 0x0800
|
|
|
|
#define IMAGE_DLLCHARACTERISTICS_WDM_DRIVER 0x2000
|
|
|
|
#define IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE 0x8000
|
|
|
|
|
2000-04-18 13:58:24 +02:00
|
|
|
typedef struct _IMAGE_FILE_HEADER {
|
|
|
|
WORD Machine;
|
|
|
|
WORD NumberOfSections;
|
|
|
|
DWORD TimeDateStamp;
|
|
|
|
DWORD PointerToSymbolTable;
|
|
|
|
DWORD NumberOfSymbols;
|
|
|
|
WORD SizeOfOptionalHeader;
|
|
|
|
WORD Characteristics;
|
|
|
|
} IMAGE_FILE_HEADER, *PIMAGE_FILE_HEADER;
|
|
|
|
|
|
|
|
typedef struct _IMAGE_DATA_DIRECTORY {
|
|
|
|
DWORD VirtualAddress;
|
|
|
|
DWORD Size;
|
|
|
|
} IMAGE_DATA_DIRECTORY, *PIMAGE_DATA_DIRECTORY;
|
|
|
|
|
|
|
|
#define IMAGE_NUMBEROF_DIRECTORY_ENTRIES 16
|
|
|
|
|
2005-07-19 13:44:32 +02:00
|
|
|
typedef struct _IMAGE_OPTIONAL_HEADER64 {
|
|
|
|
WORD Magic; /* 0x20b */
|
|
|
|
BYTE MajorLinkerVersion;
|
|
|
|
BYTE MinorLinkerVersion;
|
|
|
|
DWORD SizeOfCode;
|
|
|
|
DWORD SizeOfInitializedData;
|
|
|
|
DWORD SizeOfUninitializedData;
|
|
|
|
DWORD AddressOfEntryPoint;
|
|
|
|
DWORD BaseOfCode;
|
|
|
|
ULONGLONG ImageBase;
|
|
|
|
DWORD SectionAlignment;
|
|
|
|
DWORD FileAlignment;
|
|
|
|
WORD MajorOperatingSystemVersion;
|
|
|
|
WORD MinorOperatingSystemVersion;
|
|
|
|
WORD MajorImageVersion;
|
|
|
|
WORD MinorImageVersion;
|
|
|
|
WORD MajorSubsystemVersion;
|
|
|
|
WORD MinorSubsystemVersion;
|
|
|
|
DWORD Win32VersionValue;
|
|
|
|
DWORD SizeOfImage;
|
|
|
|
DWORD SizeOfHeaders;
|
|
|
|
DWORD CheckSum;
|
|
|
|
WORD Subsystem;
|
|
|
|
WORD DllCharacteristics;
|
|
|
|
ULONGLONG SizeOfStackReserve;
|
|
|
|
ULONGLONG SizeOfStackCommit;
|
|
|
|
ULONGLONG SizeOfHeapReserve;
|
|
|
|
ULONGLONG SizeOfHeapCommit;
|
|
|
|
DWORD LoaderFlags;
|
|
|
|
DWORD NumberOfRvaAndSizes;
|
|
|
|
IMAGE_DATA_DIRECTORY DataDirectory[IMAGE_NUMBEROF_DIRECTORY_ENTRIES];
|
|
|
|
} IMAGE_OPTIONAL_HEADER64, *PIMAGE_OPTIONAL_HEADER64;
|
|
|
|
|
|
|
|
typedef struct _IMAGE_NT_HEADERS64 {
|
|
|
|
DWORD Signature;
|
|
|
|
IMAGE_FILE_HEADER FileHeader;
|
|
|
|
IMAGE_OPTIONAL_HEADER64 OptionalHeader;
|
|
|
|
} IMAGE_NT_HEADERS64, *PIMAGE_NT_HEADERS64;
|
|
|
|
|
2000-04-18 13:58:24 +02:00
|
|
|
typedef struct _IMAGE_OPTIONAL_HEADER {
|
|
|
|
|
|
|
|
/* Standard fields */
|
|
|
|
|
2001-06-06 23:06:27 +02:00
|
|
|
WORD Magic; /* 0x10b or 0x107 */ /* 0x00 */
|
2000-04-18 13:58:24 +02:00
|
|
|
BYTE MajorLinkerVersion;
|
|
|
|
BYTE MinorLinkerVersion;
|
|
|
|
DWORD SizeOfCode;
|
|
|
|
DWORD SizeOfInitializedData;
|
|
|
|
DWORD SizeOfUninitializedData;
|
2001-06-06 23:06:27 +02:00
|
|
|
DWORD AddressOfEntryPoint; /* 0x10 */
|
2000-04-18 13:58:24 +02:00
|
|
|
DWORD BaseOfCode;
|
|
|
|
DWORD BaseOfData;
|
|
|
|
|
|
|
|
/* NT additional fields */
|
|
|
|
|
|
|
|
DWORD ImageBase;
|
2001-06-06 23:06:27 +02:00
|
|
|
DWORD SectionAlignment; /* 0x20 */
|
2000-04-18 13:58:24 +02:00
|
|
|
DWORD FileAlignment;
|
|
|
|
WORD MajorOperatingSystemVersion;
|
|
|
|
WORD MinorOperatingSystemVersion;
|
|
|
|
WORD MajorImageVersion;
|
|
|
|
WORD MinorImageVersion;
|
2001-06-06 23:06:27 +02:00
|
|
|
WORD MajorSubsystemVersion; /* 0x30 */
|
2000-04-18 13:58:24 +02:00
|
|
|
WORD MinorSubsystemVersion;
|
|
|
|
DWORD Win32VersionValue;
|
|
|
|
DWORD SizeOfImage;
|
|
|
|
DWORD SizeOfHeaders;
|
2001-06-06 23:06:27 +02:00
|
|
|
DWORD CheckSum; /* 0x40 */
|
2000-04-18 13:58:24 +02:00
|
|
|
WORD Subsystem;
|
|
|
|
WORD DllCharacteristics;
|
|
|
|
DWORD SizeOfStackReserve;
|
|
|
|
DWORD SizeOfStackCommit;
|
2001-06-06 23:06:27 +02:00
|
|
|
DWORD SizeOfHeapReserve; /* 0x50 */
|
2000-04-18 13:58:24 +02:00
|
|
|
DWORD SizeOfHeapCommit;
|
|
|
|
DWORD LoaderFlags;
|
|
|
|
DWORD NumberOfRvaAndSizes;
|
2001-06-06 23:06:27 +02:00
|
|
|
IMAGE_DATA_DIRECTORY DataDirectory[IMAGE_NUMBEROF_DIRECTORY_ENTRIES]; /* 0x60 */
|
2002-02-27 22:35:36 +01:00
|
|
|
/* 0xE0 */
|
2005-07-19 13:44:32 +02:00
|
|
|
} IMAGE_OPTIONAL_HEADER32, *PIMAGE_OPTIONAL_HEADER32;
|
2000-04-18 13:58:24 +02:00
|
|
|
|
|
|
|
typedef struct _IMAGE_NT_HEADERS {
|
2002-02-27 22:35:36 +01:00
|
|
|
DWORD Signature; /* "PE"\0\0 */ /* 0x00 */
|
|
|
|
IMAGE_FILE_HEADER FileHeader; /* 0x04 */
|
2005-07-19 13:44:32 +02:00
|
|
|
IMAGE_OPTIONAL_HEADER32 OptionalHeader; /* 0x18 */
|
|
|
|
} IMAGE_NT_HEADERS32, *PIMAGE_NT_HEADERS32;
|
|
|
|
|
|
|
|
#ifdef _WIN64
|
|
|
|
typedef IMAGE_NT_HEADERS64 IMAGE_NT_HEADERS;
|
|
|
|
typedef PIMAGE_NT_HEADERS64 PIMAGE_NT_HEADERS;
|
|
|
|
typedef IMAGE_OPTIONAL_HEADER64 IMAGE_OPTIONAL_HEADER;
|
|
|
|
typedef PIMAGE_OPTIONAL_HEADER64 PIMAGE_OPTIONAL_HEADER;
|
|
|
|
#else
|
|
|
|
typedef IMAGE_NT_HEADERS32 IMAGE_NT_HEADERS;
|
|
|
|
typedef PIMAGE_NT_HEADERS32 PIMAGE_NT_HEADERS;
|
|
|
|
typedef IMAGE_OPTIONAL_HEADER32 IMAGE_OPTIONAL_HEADER;
|
|
|
|
typedef PIMAGE_OPTIONAL_HEADER32 PIMAGE_OPTIONAL_HEADER;
|
|
|
|
#endif
|
2000-04-18 13:58:24 +02:00
|
|
|
|
|
|
|
#define IMAGE_SIZEOF_SHORT_NAME 8
|
|
|
|
|
|
|
|
typedef struct _IMAGE_SECTION_HEADER {
|
|
|
|
BYTE Name[IMAGE_SIZEOF_SHORT_NAME];
|
|
|
|
union {
|
|
|
|
DWORD PhysicalAddress;
|
|
|
|
DWORD VirtualSize;
|
|
|
|
} Misc;
|
|
|
|
DWORD VirtualAddress;
|
|
|
|
DWORD SizeOfRawData;
|
|
|
|
DWORD PointerToRawData;
|
|
|
|
DWORD PointerToRelocations;
|
|
|
|
DWORD PointerToLinenumbers;
|
|
|
|
WORD NumberOfRelocations;
|
|
|
|
WORD NumberOfLinenumbers;
|
|
|
|
DWORD Characteristics;
|
|
|
|
} IMAGE_SECTION_HEADER, *PIMAGE_SECTION_HEADER;
|
|
|
|
|
|
|
|
#define IMAGE_SIZEOF_SECTION_HEADER 40
|
|
|
|
|
|
|
|
#define IMAGE_FIRST_SECTION(ntheader) \
|
2006-10-11 23:20:10 +02:00
|
|
|
((PIMAGE_SECTION_HEADER)(ULONG_PTR)((const BYTE *)&((const IMAGE_NT_HEADERS *)(ntheader))->OptionalHeader + \
|
|
|
|
((const IMAGE_NT_HEADERS *)(ntheader))->FileHeader.SizeOfOptionalHeader))
|
2000-04-18 13:58:24 +02:00
|
|
|
|
|
|
|
/* These defines are for the Characteristics bitfield. */
|
|
|
|
/* #define IMAGE_SCN_TYPE_REG 0x00000000 - Reserved */
|
|
|
|
/* #define IMAGE_SCN_TYPE_DSECT 0x00000001 - Reserved */
|
|
|
|
/* #define IMAGE_SCN_TYPE_NOLOAD 0x00000002 - Reserved */
|
|
|
|
/* #define IMAGE_SCN_TYPE_GROUP 0x00000004 - Reserved */
|
2003-07-19 05:01:04 +02:00
|
|
|
#define IMAGE_SCN_TYPE_NO_PAD 0x00000008 /* Reserved */
|
2000-04-18 13:58:24 +02:00
|
|
|
/* #define IMAGE_SCN_TYPE_COPY 0x00000010 - Reserved */
|
|
|
|
|
|
|
|
#define IMAGE_SCN_CNT_CODE 0x00000020
|
|
|
|
#define IMAGE_SCN_CNT_INITIALIZED_DATA 0x00000040
|
|
|
|
#define IMAGE_SCN_CNT_UNINITIALIZED_DATA 0x00000080
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
#define IMAGE_SCN_LNK_OTHER 0x00000100
|
|
|
|
#define IMAGE_SCN_LNK_INFO 0x00000200
|
2000-04-18 13:58:24 +02:00
|
|
|
/* #define IMAGE_SCN_TYPE_OVER 0x00000400 - Reserved */
|
|
|
|
#define IMAGE_SCN_LNK_REMOVE 0x00000800
|
|
|
|
#define IMAGE_SCN_LNK_COMDAT 0x00001000
|
|
|
|
|
|
|
|
/* 0x00002000 - Reserved */
|
|
|
|
/* #define IMAGE_SCN_MEM_PROTECTED 0x00004000 - Obsolete */
|
|
|
|
#define IMAGE_SCN_MEM_FARDATA 0x00008000
|
|
|
|
|
|
|
|
/* #define IMAGE_SCN_MEM_SYSHEAP 0x00010000 - Obsolete */
|
|
|
|
#define IMAGE_SCN_MEM_PURGEABLE 0x00020000
|
|
|
|
#define IMAGE_SCN_MEM_16BIT 0x00020000
|
|
|
|
#define IMAGE_SCN_MEM_LOCKED 0x00040000
|
|
|
|
#define IMAGE_SCN_MEM_PRELOAD 0x00080000
|
|
|
|
|
|
|
|
#define IMAGE_SCN_ALIGN_1BYTES 0x00100000
|
|
|
|
#define IMAGE_SCN_ALIGN_2BYTES 0x00200000
|
|
|
|
#define IMAGE_SCN_ALIGN_4BYTES 0x00300000
|
|
|
|
#define IMAGE_SCN_ALIGN_8BYTES 0x00400000
|
|
|
|
#define IMAGE_SCN_ALIGN_16BYTES 0x00500000 /* Default */
|
2003-07-19 05:01:04 +02:00
|
|
|
#define IMAGE_SCN_ALIGN_32BYTES 0x00600000
|
|
|
|
#define IMAGE_SCN_ALIGN_64BYTES 0x00700000
|
|
|
|
#define IMAGE_SCN_ALIGN_128BYTES 0x00800000
|
|
|
|
#define IMAGE_SCN_ALIGN_256BYTES 0x00900000
|
|
|
|
#define IMAGE_SCN_ALIGN_512BYTES 0x00A00000
|
|
|
|
#define IMAGE_SCN_ALIGN_1024BYTES 0x00B00000
|
|
|
|
#define IMAGE_SCN_ALIGN_2048BYTES 0x00C00000
|
|
|
|
#define IMAGE_SCN_ALIGN_4096BYTES 0x00D00000
|
|
|
|
#define IMAGE_SCN_ALIGN_8192BYTES 0x00E00000
|
|
|
|
/* 0x00F00000 - Unused */
|
|
|
|
#define IMAGE_SCN_ALIGN_MASK 0x00F00000
|
2000-04-18 13:58:24 +02:00
|
|
|
|
|
|
|
#define IMAGE_SCN_LNK_NRELOC_OVFL 0x01000000
|
|
|
|
|
|
|
|
|
|
|
|
#define IMAGE_SCN_MEM_DISCARDABLE 0x02000000
|
|
|
|
#define IMAGE_SCN_MEM_NOT_CACHED 0x04000000
|
|
|
|
#define IMAGE_SCN_MEM_NOT_PAGED 0x08000000
|
|
|
|
#define IMAGE_SCN_MEM_SHARED 0x10000000
|
|
|
|
#define IMAGE_SCN_MEM_EXECUTE 0x20000000
|
|
|
|
#define IMAGE_SCN_MEM_READ 0x40000000
|
|
|
|
#define IMAGE_SCN_MEM_WRITE 0x80000000
|
|
|
|
|
2003-08-28 23:43:34 +02:00
|
|
|
#include <pshpack2.h>
|
2000-04-18 13:58:24 +02:00
|
|
|
|
|
|
|
typedef struct _IMAGE_SYMBOL {
|
|
|
|
union {
|
|
|
|
BYTE ShortName[8];
|
|
|
|
struct {
|
|
|
|
DWORD Short;
|
|
|
|
DWORD Long;
|
|
|
|
} Name;
|
|
|
|
DWORD LongName[2];
|
|
|
|
} N;
|
|
|
|
DWORD Value;
|
|
|
|
SHORT SectionNumber;
|
|
|
|
WORD Type;
|
|
|
|
BYTE StorageClass;
|
|
|
|
BYTE NumberOfAuxSymbols;
|
|
|
|
} IMAGE_SYMBOL;
|
|
|
|
typedef IMAGE_SYMBOL *PIMAGE_SYMBOL;
|
|
|
|
|
|
|
|
#define IMAGE_SIZEOF_SYMBOL 18
|
|
|
|
|
|
|
|
typedef struct _IMAGE_LINENUMBER {
|
|
|
|
union {
|
|
|
|
DWORD SymbolTableIndex;
|
|
|
|
DWORD VirtualAddress;
|
|
|
|
} Type;
|
|
|
|
WORD Linenumber;
|
|
|
|
} IMAGE_LINENUMBER;
|
|
|
|
typedef IMAGE_LINENUMBER *PIMAGE_LINENUMBER;
|
|
|
|
|
|
|
|
#define IMAGE_SIZEOF_LINENUMBER 6
|
|
|
|
|
|
|
|
typedef union _IMAGE_AUX_SYMBOL {
|
|
|
|
struct {
|
|
|
|
DWORD TagIndex;
|
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
WORD Linenumber;
|
|
|
|
WORD Size;
|
|
|
|
} LnSz;
|
|
|
|
DWORD TotalSize;
|
|
|
|
} Misc;
|
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
DWORD PointerToLinenumber;
|
|
|
|
DWORD PointerToNextFunction;
|
|
|
|
} Function;
|
|
|
|
struct {
|
|
|
|
WORD Dimension[4];
|
|
|
|
} Array;
|
|
|
|
} FcnAry;
|
|
|
|
WORD TvIndex;
|
|
|
|
} Sym;
|
|
|
|
struct {
|
|
|
|
BYTE Name[IMAGE_SIZEOF_SYMBOL];
|
|
|
|
} File;
|
|
|
|
struct {
|
|
|
|
DWORD Length;
|
|
|
|
WORD NumberOfRelocations;
|
|
|
|
WORD NumberOfLinenumbers;
|
|
|
|
DWORD CheckSum;
|
|
|
|
SHORT Number;
|
|
|
|
BYTE Selection;
|
|
|
|
} Section;
|
|
|
|
} IMAGE_AUX_SYMBOL;
|
|
|
|
typedef IMAGE_AUX_SYMBOL *PIMAGE_AUX_SYMBOL;
|
|
|
|
|
|
|
|
#define IMAGE_SIZEOF_AUX_SYMBOL 18
|
|
|
|
|
2003-08-28 23:43:34 +02:00
|
|
|
#include <poppack.h>
|
2000-04-18 13:58:24 +02:00
|
|
|
|
|
|
|
#define IMAGE_SYM_UNDEFINED (SHORT)0
|
|
|
|
#define IMAGE_SYM_ABSOLUTE (SHORT)-1
|
|
|
|
#define IMAGE_SYM_DEBUG (SHORT)-2
|
|
|
|
|
|
|
|
#define IMAGE_SYM_TYPE_NULL 0x0000
|
|
|
|
#define IMAGE_SYM_TYPE_VOID 0x0001
|
|
|
|
#define IMAGE_SYM_TYPE_CHAR 0x0002
|
|
|
|
#define IMAGE_SYM_TYPE_SHORT 0x0003
|
|
|
|
#define IMAGE_SYM_TYPE_INT 0x0004
|
|
|
|
#define IMAGE_SYM_TYPE_LONG 0x0005
|
|
|
|
#define IMAGE_SYM_TYPE_FLOAT 0x0006
|
|
|
|
#define IMAGE_SYM_TYPE_DOUBLE 0x0007
|
|
|
|
#define IMAGE_SYM_TYPE_STRUCT 0x0008
|
|
|
|
#define IMAGE_SYM_TYPE_UNION 0x0009
|
|
|
|
#define IMAGE_SYM_TYPE_ENUM 0x000A
|
|
|
|
#define IMAGE_SYM_TYPE_MOE 0x000B
|
|
|
|
#define IMAGE_SYM_TYPE_BYTE 0x000C
|
|
|
|
#define IMAGE_SYM_TYPE_WORD 0x000D
|
|
|
|
#define IMAGE_SYM_TYPE_UINT 0x000E
|
|
|
|
#define IMAGE_SYM_TYPE_DWORD 0x000F
|
|
|
|
#define IMAGE_SYM_TYPE_PCODE 0x8000
|
|
|
|
|
|
|
|
#define IMAGE_SYM_DTYPE_NULL 0
|
|
|
|
#define IMAGE_SYM_DTYPE_POINTER 1
|
|
|
|
#define IMAGE_SYM_DTYPE_FUNCTION 2
|
|
|
|
#define IMAGE_SYM_DTYPE_ARRAY 3
|
|
|
|
|
|
|
|
#define IMAGE_SYM_CLASS_END_OF_FUNCTION (BYTE )-1
|
|
|
|
#define IMAGE_SYM_CLASS_NULL 0x0000
|
|
|
|
#define IMAGE_SYM_CLASS_AUTOMATIC 0x0001
|
|
|
|
#define IMAGE_SYM_CLASS_EXTERNAL 0x0002
|
|
|
|
#define IMAGE_SYM_CLASS_STATIC 0x0003
|
|
|
|
#define IMAGE_SYM_CLASS_REGISTER 0x0004
|
|
|
|
#define IMAGE_SYM_CLASS_EXTERNAL_DEF 0x0005
|
|
|
|
#define IMAGE_SYM_CLASS_LABEL 0x0006
|
|
|
|
#define IMAGE_SYM_CLASS_UNDEFINED_LABEL 0x0007
|
|
|
|
#define IMAGE_SYM_CLASS_MEMBER_OF_STRUCT 0x0008
|
|
|
|
#define IMAGE_SYM_CLASS_ARGUMENT 0x0009
|
|
|
|
#define IMAGE_SYM_CLASS_STRUCT_TAG 0x000A
|
|
|
|
#define IMAGE_SYM_CLASS_MEMBER_OF_UNION 0x000B
|
|
|
|
#define IMAGE_SYM_CLASS_UNION_TAG 0x000C
|
|
|
|
#define IMAGE_SYM_CLASS_TYPE_DEFINITION 0x000D
|
|
|
|
#define IMAGE_SYM_CLASS_UNDEFINED_STATIC 0x000E
|
|
|
|
#define IMAGE_SYM_CLASS_ENUM_TAG 0x000F
|
|
|
|
#define IMAGE_SYM_CLASS_MEMBER_OF_ENUM 0x0010
|
|
|
|
#define IMAGE_SYM_CLASS_REGISTER_PARAM 0x0011
|
|
|
|
#define IMAGE_SYM_CLASS_BIT_FIELD 0x0012
|
|
|
|
|
|
|
|
#define IMAGE_SYM_CLASS_FAR_EXTERNAL 0x0044
|
|
|
|
#define IMAGE_SYM_CLASS_BLOCK 0x0064
|
|
|
|
#define IMAGE_SYM_CLASS_FUNCTION 0x0065
|
|
|
|
#define IMAGE_SYM_CLASS_END_OF_STRUCT 0x0066
|
|
|
|
#define IMAGE_SYM_CLASS_FILE 0x0067
|
|
|
|
#define IMAGE_SYM_CLASS_SECTION 0x0068
|
|
|
|
#define IMAGE_SYM_CLASS_WEAK_EXTERNAL 0x0069
|
|
|
|
|
|
|
|
#define N_BTMASK 0x000F
|
|
|
|
#define N_TMASK 0x0030
|
|
|
|
#define N_TMASK1 0x00C0
|
|
|
|
#define N_TMASK2 0x00F0
|
|
|
|
#define N_BTSHFT 4
|
|
|
|
#define N_TSHIFT 2
|
|
|
|
|
|
|
|
#define BTYPE(x) ((x) & N_BTMASK)
|
|
|
|
|
|
|
|
#ifndef ISPTR
|
|
|
|
#define ISPTR(x) (((x) & N_TMASK) == (IMAGE_SYM_DTYPE_POINTER << N_BTSHFT))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef ISFCN
|
|
|
|
#define ISFCN(x) (((x) & N_TMASK) == (IMAGE_SYM_DTYPE_FUNCTION << N_BTSHFT))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef ISARY
|
|
|
|
#define ISARY(x) (((x) & N_TMASK) == (IMAGE_SYM_DTYPE_ARRAY << N_BTSHFT))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef ISTAG
|
|
|
|
#define ISTAG(x) ((x)==IMAGE_SYM_CLASS_STRUCT_TAG || (x)==IMAGE_SYM_CLASS_UNION_TAG || (x)==IMAGE_SYM_CLASS_ENUM_TAG)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef INCREF
|
|
|
|
#define INCREF(x) ((((x)&~N_BTMASK)<<N_TSHIFT)|(IMAGE_SYM_DTYPE_POINTER<<N_BTSHFT)|((x)&N_BTMASK))
|
|
|
|
#endif
|
|
|
|
#ifndef DECREF
|
|
|
|
#define DECREF(x) ((((x)>>N_TSHIFT)&~N_BTMASK)|((x)&N_BTMASK))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define IMAGE_COMDAT_SELECT_NODUPLICATES 1
|
|
|
|
#define IMAGE_COMDAT_SELECT_ANY 2
|
|
|
|
#define IMAGE_COMDAT_SELECT_SAME_SIZE 3
|
|
|
|
#define IMAGE_COMDAT_SELECT_EXACT_MATCH 4
|
|
|
|
#define IMAGE_COMDAT_SELECT_ASSOCIATIVE 5
|
|
|
|
#define IMAGE_COMDAT_SELECT_LARGEST 6
|
|
|
|
#define IMAGE_COMDAT_SELECT_NEWEST 7
|
|
|
|
|
|
|
|
#define IMAGE_WEAK_EXTERN_SEARCH_NOLIBRARY 1
|
|
|
|
#define IMAGE_WEAK_EXTERN_SEARCH_LIBRARY 2
|
|
|
|
#define IMAGE_WEAK_EXTERN_SEARCH_ALIAS 3
|
|
|
|
|
|
|
|
/* Export module directory */
|
|
|
|
|
|
|
|
typedef struct _IMAGE_EXPORT_DIRECTORY {
|
|
|
|
DWORD Characteristics;
|
|
|
|
DWORD TimeDateStamp;
|
|
|
|
WORD MajorVersion;
|
|
|
|
WORD MinorVersion;
|
|
|
|
DWORD Name;
|
|
|
|
DWORD Base;
|
|
|
|
DWORD NumberOfFunctions;
|
|
|
|
DWORD NumberOfNames;
|
2000-05-10 05:48:00 +02:00
|
|
|
DWORD AddressOfFunctions;
|
|
|
|
DWORD AddressOfNames;
|
|
|
|
DWORD AddressOfNameOrdinals;
|
2000-04-18 13:58:24 +02:00
|
|
|
} IMAGE_EXPORT_DIRECTORY,*PIMAGE_EXPORT_DIRECTORY;
|
|
|
|
|
|
|
|
/* Import name entry */
|
|
|
|
typedef struct _IMAGE_IMPORT_BY_NAME {
|
|
|
|
WORD Hint;
|
|
|
|
BYTE Name[1];
|
|
|
|
} IMAGE_IMPORT_BY_NAME,*PIMAGE_IMPORT_BY_NAME;
|
|
|
|
|
2006-11-26 09:03:25 +01:00
|
|
|
#include <pshpack8.h>
|
2000-04-18 13:58:24 +02:00
|
|
|
/* Import thunk */
|
2005-07-19 13:44:32 +02:00
|
|
|
typedef struct _IMAGE_THUNK_DATA64 {
|
2000-04-18 13:58:24 +02:00
|
|
|
union {
|
2005-07-19 13:44:32 +02:00
|
|
|
ULONGLONG ForwarderString;
|
|
|
|
ULONGLONG Function;
|
|
|
|
ULONGLONG Ordinal;
|
|
|
|
ULONGLONG AddressOfData;
|
2000-04-18 13:58:24 +02:00
|
|
|
} u1;
|
2005-07-19 13:44:32 +02:00
|
|
|
} IMAGE_THUNK_DATA64,*PIMAGE_THUNK_DATA64;
|
2006-11-26 09:03:25 +01:00
|
|
|
#include <poppack.h>
|
2005-07-19 13:44:32 +02:00
|
|
|
|
|
|
|
typedef struct _IMAGE_THUNK_DATA32 {
|
|
|
|
union {
|
|
|
|
DWORD ForwarderString;
|
|
|
|
DWORD Function;
|
|
|
|
DWORD Ordinal;
|
|
|
|
DWORD AddressOfData;
|
|
|
|
} u1;
|
|
|
|
} IMAGE_THUNK_DATA32,*PIMAGE_THUNK_DATA32;
|
2000-04-18 13:58:24 +02:00
|
|
|
|
|
|
|
/* Import module directory */
|
|
|
|
|
|
|
|
typedef struct _IMAGE_IMPORT_DESCRIPTOR {
|
|
|
|
union {
|
|
|
|
DWORD Characteristics; /* 0 for terminating null import descriptor */
|
2005-07-19 13:44:32 +02:00
|
|
|
DWORD OriginalFirstThunk; /* RVA to original unbound IAT */
|
2005-03-17 20:00:08 +01:00
|
|
|
} DUMMYUNIONNAME;
|
2000-04-18 13:58:24 +02:00
|
|
|
DWORD TimeDateStamp; /* 0 if not bound,
|
|
|
|
* -1 if bound, and real date\time stamp
|
|
|
|
* in IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT
|
|
|
|
* (new BIND)
|
|
|
|
* otherwise date/time stamp of DLL bound to
|
|
|
|
* (Old BIND)
|
|
|
|
*/
|
|
|
|
DWORD ForwarderChain; /* -1 if no forwarders */
|
|
|
|
DWORD Name;
|
|
|
|
/* RVA to IAT (if bound this IAT has actual addresses) */
|
2005-07-19 13:44:32 +02:00
|
|
|
DWORD FirstThunk;
|
2000-04-18 13:58:24 +02:00
|
|
|
} IMAGE_IMPORT_DESCRIPTOR,*PIMAGE_IMPORT_DESCRIPTOR;
|
|
|
|
|
2005-07-19 13:44:32 +02:00
|
|
|
#define IMAGE_ORDINAL_FLAG64 (((ULONGLONG)0x80000000 << 32) | 0x00000000)
|
|
|
|
#define IMAGE_ORDINAL_FLAG32 0x80000000
|
|
|
|
#define IMAGE_SNAP_BY_ORDINAL64(ordinal) (((ordinal) & IMAGE_ORDINAL_FLAG64) != 0)
|
|
|
|
#define IMAGE_SNAP_BY_ORDINAL32(ordinal) (((ordinal) & IMAGE_ORDINAL_FLAG32) != 0)
|
|
|
|
#define IMAGE_ORDINAL64(ordinal) ((ordinal) & 0xffff)
|
|
|
|
#define IMAGE_ORDINAL32(ordinal) ((ordinal) & 0xffff)
|
|
|
|
|
|
|
|
#ifdef _WIN64
|
|
|
|
#define IMAGE_ORDINAL_FLAG IMAGE_ORDINAL_FLAG64
|
|
|
|
#define IMAGE_SNAP_BY_ORDINAL(Ordinal) IMAGE_SNAP_BY_ORDINAL64(Ordinal)
|
|
|
|
#define IMAGE_ORDINAL(Ordinal) IMAGE_ORDINAL64(Ordinal)
|
|
|
|
typedef IMAGE_THUNK_DATA64 IMAGE_THUNK_DATA;
|
|
|
|
typedef PIMAGE_THUNK_DATA64 PIMAGE_THUNK_DATA;
|
|
|
|
#else
|
|
|
|
#define IMAGE_ORDINAL_FLAG IMAGE_ORDINAL_FLAG32
|
|
|
|
#define IMAGE_SNAP_BY_ORDINAL(Ordinal) IMAGE_SNAP_BY_ORDINAL32(Ordinal)
|
|
|
|
#define IMAGE_ORDINAL(Ordinal) IMAGE_ORDINAL32(Ordinal)
|
|
|
|
typedef IMAGE_THUNK_DATA32 IMAGE_THUNK_DATA;
|
|
|
|
typedef PIMAGE_THUNK_DATA32 PIMAGE_THUNK_DATA;
|
|
|
|
#endif
|
2000-04-18 13:58:24 +02:00
|
|
|
|
|
|
|
typedef struct _IMAGE_BOUND_IMPORT_DESCRIPTOR
|
|
|
|
{
|
|
|
|
DWORD TimeDateStamp;
|
|
|
|
WORD OffsetModuleName;
|
|
|
|
WORD NumberOfModuleForwarderRefs;
|
|
|
|
/* Array of zero or more IMAGE_BOUND_FORWARDER_REF follows */
|
|
|
|
} IMAGE_BOUND_IMPORT_DESCRIPTOR, *PIMAGE_BOUND_IMPORT_DESCRIPTOR;
|
|
|
|
|
|
|
|
typedef struct _IMAGE_BOUND_FORWARDER_REF
|
|
|
|
{
|
|
|
|
DWORD TimeDateStamp;
|
|
|
|
WORD OffsetModuleName;
|
|
|
|
WORD Reserved;
|
|
|
|
} IMAGE_BOUND_FORWARDER_REF, *PIMAGE_BOUND_FORWARDER_REF;
|
|
|
|
|
|
|
|
typedef struct _IMAGE_BASE_RELOCATION
|
|
|
|
{
|
|
|
|
DWORD VirtualAddress;
|
|
|
|
DWORD SizeOfBlock;
|
2001-11-23 19:44:43 +01:00
|
|
|
/* WORD TypeOffset[1]; */
|
2000-04-18 13:58:24 +02:00
|
|
|
} IMAGE_BASE_RELOCATION,*PIMAGE_BASE_RELOCATION;
|
|
|
|
|
2003-08-28 23:43:34 +02:00
|
|
|
#include <pshpack2.h>
|
2002-11-04 23:43:24 +01:00
|
|
|
|
2000-04-18 13:58:24 +02:00
|
|
|
typedef struct _IMAGE_RELOCATION
|
|
|
|
{
|
|
|
|
union {
|
|
|
|
DWORD VirtualAddress;
|
|
|
|
DWORD RelocCount;
|
2002-10-23 20:50:10 +02:00
|
|
|
} DUMMYUNIONNAME;
|
2000-04-18 13:58:24 +02:00
|
|
|
DWORD SymbolTableIndex;
|
|
|
|
WORD Type;
|
2002-10-23 20:50:10 +02:00
|
|
|
} IMAGE_RELOCATION, *PIMAGE_RELOCATION;
|
2000-04-18 13:58:24 +02:00
|
|
|
|
2003-08-28 23:43:34 +02:00
|
|
|
#include <poppack.h>
|
2001-11-23 19:44:43 +01:00
|
|
|
|
2000-04-18 13:58:24 +02:00
|
|
|
#define IMAGE_SIZEOF_RELOCATION 10
|
|
|
|
|
2013-08-22 18:58:59 +02:00
|
|
|
typedef struct _IMAGE_DELAYLOAD_DESCRIPTOR
|
|
|
|
{
|
|
|
|
union
|
|
|
|
{
|
|
|
|
DWORD AllAttributes;
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
DWORD RvaBased:1;
|
|
|
|
DWORD ReservedAttributes:31;
|
|
|
|
} DUMMYSTRUCTNAME;
|
|
|
|
} Attributes;
|
|
|
|
|
|
|
|
DWORD DllNameRVA;
|
|
|
|
DWORD ModuleHandleRVA;
|
|
|
|
DWORD ImportAddressTableRVA;
|
|
|
|
DWORD ImportNameTableRVA;
|
|
|
|
DWORD BoundImportAddressTableRVA;
|
|
|
|
DWORD UnloadInformationTableRVA;
|
|
|
|
DWORD TimeDateStamp;
|
|
|
|
} IMAGE_DELAYLOAD_DESCRIPTOR, *PIMAGE_DELAYLOAD_DESCRIPTOR;
|
|
|
|
typedef const IMAGE_DELAYLOAD_DESCRIPTOR *PCIMAGE_DELAYLOAD_DESCRIPTOR;
|
|
|
|
|
2000-04-18 13:58:24 +02:00
|
|
|
/* generic relocation types */
|
|
|
|
#define IMAGE_REL_BASED_ABSOLUTE 0
|
|
|
|
#define IMAGE_REL_BASED_HIGH 1
|
|
|
|
#define IMAGE_REL_BASED_LOW 2
|
|
|
|
#define IMAGE_REL_BASED_HIGHLOW 3
|
|
|
|
#define IMAGE_REL_BASED_HIGHADJ 4
|
|
|
|
#define IMAGE_REL_BASED_MIPS_JMPADDR 5
|
2011-10-28 21:22:05 +02:00
|
|
|
#define IMAGE_REL_BASED_ARM_MOV32A 5 /* yes, 5 too */
|
2013-01-20 18:02:10 +01:00
|
|
|
#define IMAGE_REL_BASED_ARM_MOV32 5 /* yes, 5 too */
|
2000-04-18 13:58:24 +02:00
|
|
|
#define IMAGE_REL_BASED_SECTION 6
|
|
|
|
#define IMAGE_REL_BASED_REL 7
|
2011-10-28 21:22:05 +02:00
|
|
|
#define IMAGE_REL_BASED_ARM_MOV32T 7 /* yes, 7 too */
|
2013-01-20 18:02:10 +01:00
|
|
|
#define IMAGE_REL_BASED_THUMB_MOV32 7 /* yes, 7 too */
|
2000-04-18 13:58:24 +02:00
|
|
|
#define IMAGE_REL_BASED_MIPS_JMPADDR16 9
|
|
|
|
#define IMAGE_REL_BASED_IA64_IMM64 9 /* yes, 9 too */
|
|
|
|
#define IMAGE_REL_BASED_DIR64 10
|
|
|
|
#define IMAGE_REL_BASED_HIGH3ADJ 11
|
|
|
|
|
|
|
|
/* I386 relocation types */
|
|
|
|
#define IMAGE_REL_I386_ABSOLUTE 0
|
|
|
|
#define IMAGE_REL_I386_DIR16 1
|
|
|
|
#define IMAGE_REL_I386_REL16 2
|
|
|
|
#define IMAGE_REL_I386_DIR32 6
|
|
|
|
#define IMAGE_REL_I386_DIR32NB 7
|
|
|
|
#define IMAGE_REL_I386_SEG12 9
|
|
|
|
#define IMAGE_REL_I386_SECTION 10
|
|
|
|
#define IMAGE_REL_I386_SECREL 11
|
2010-11-16 20:58:52 +01:00
|
|
|
#define IMAGE_REL_I386_TOKEN 12
|
|
|
|
#define IMAGE_REL_I386_SECREL7 13
|
2000-04-18 13:58:24 +02:00
|
|
|
#define IMAGE_REL_I386_REL32 20
|
|
|
|
|
|
|
|
/* MIPS relocation types */
|
|
|
|
#define IMAGE_REL_MIPS_ABSOLUTE 0x0000
|
|
|
|
#define IMAGE_REL_MIPS_REFHALF 0x0001
|
|
|
|
#define IMAGE_REL_MIPS_REFWORD 0x0002
|
|
|
|
#define IMAGE_REL_MIPS_JMPADDR 0x0003
|
|
|
|
#define IMAGE_REL_MIPS_REFHI 0x0004
|
|
|
|
#define IMAGE_REL_MIPS_REFLO 0x0005
|
|
|
|
#define IMAGE_REL_MIPS_GPREL 0x0006
|
|
|
|
#define IMAGE_REL_MIPS_LITERAL 0x0007
|
|
|
|
#define IMAGE_REL_MIPS_SECTION 0x000A
|
|
|
|
#define IMAGE_REL_MIPS_SECREL 0x000B
|
|
|
|
#define IMAGE_REL_MIPS_SECRELLO 0x000C
|
|
|
|
#define IMAGE_REL_MIPS_SECRELHI 0x000D
|
2010-11-16 20:58:52 +01:00
|
|
|
#define IMAGE_REL_MIPS_TOKEN 0x000E
|
|
|
|
#define IMAGE_REL_MIPS_JMPADDR16 0x0010
|
2000-04-18 13:58:24 +02:00
|
|
|
#define IMAGE_REL_MIPS_REFWORDNB 0x0022
|
|
|
|
#define IMAGE_REL_MIPS_PAIR 0x0025
|
|
|
|
|
|
|
|
/* ALPHA relocation types */
|
|
|
|
#define IMAGE_REL_ALPHA_ABSOLUTE 0x0000
|
|
|
|
#define IMAGE_REL_ALPHA_REFLONG 0x0001
|
|
|
|
#define IMAGE_REL_ALPHA_REFQUAD 0x0002
|
|
|
|
#define IMAGE_REL_ALPHA_GPREL 0x0003
|
|
|
|
#define IMAGE_REL_ALPHA_LITERAL 0x0004
|
|
|
|
#define IMAGE_REL_ALPHA_LITUSE 0x0005
|
|
|
|
#define IMAGE_REL_ALPHA_GPDISP 0x0006
|
|
|
|
#define IMAGE_REL_ALPHA_BRADDR 0x0007
|
|
|
|
#define IMAGE_REL_ALPHA_HINT 0x0008
|
|
|
|
#define IMAGE_REL_ALPHA_INLINE_REFLONG 0x0009
|
|
|
|
#define IMAGE_REL_ALPHA_REFHI 0x000A
|
|
|
|
#define IMAGE_REL_ALPHA_REFLO 0x000B
|
|
|
|
#define IMAGE_REL_ALPHA_PAIR 0x000C
|
|
|
|
#define IMAGE_REL_ALPHA_MATCH 0x000D
|
|
|
|
#define IMAGE_REL_ALPHA_SECTION 0x000E
|
|
|
|
#define IMAGE_REL_ALPHA_SECREL 0x000F
|
|
|
|
#define IMAGE_REL_ALPHA_REFLONGNB 0x0010
|
|
|
|
#define IMAGE_REL_ALPHA_SECRELLO 0x0011
|
|
|
|
#define IMAGE_REL_ALPHA_SECRELHI 0x0012
|
|
|
|
#define IMAGE_REL_ALPHA_REFQ3 0x0013
|
|
|
|
#define IMAGE_REL_ALPHA_REFQ2 0x0014
|
|
|
|
#define IMAGE_REL_ALPHA_REFQ1 0x0015
|
|
|
|
#define IMAGE_REL_ALPHA_GPRELLO 0x0016
|
|
|
|
#define IMAGE_REL_ALPHA_GPRELHI 0x0017
|
|
|
|
|
|
|
|
/* PowerPC relocation types */
|
|
|
|
#define IMAGE_REL_PPC_ABSOLUTE 0x0000
|
|
|
|
#define IMAGE_REL_PPC_ADDR64 0x0001
|
|
|
|
#define IMAGE_REL_PPC_ADDR 0x0002
|
|
|
|
#define IMAGE_REL_PPC_ADDR24 0x0003
|
|
|
|
#define IMAGE_REL_PPC_ADDR16 0x0004
|
|
|
|
#define IMAGE_REL_PPC_ADDR14 0x0005
|
|
|
|
#define IMAGE_REL_PPC_REL24 0x0006
|
|
|
|
#define IMAGE_REL_PPC_REL14 0x0007
|
|
|
|
#define IMAGE_REL_PPC_TOCREL16 0x0008
|
|
|
|
#define IMAGE_REL_PPC_TOCREL14 0x0009
|
|
|
|
#define IMAGE_REL_PPC_ADDR32NB 0x000A
|
|
|
|
#define IMAGE_REL_PPC_SECREL 0x000B
|
|
|
|
#define IMAGE_REL_PPC_SECTION 0x000C
|
|
|
|
#define IMAGE_REL_PPC_IFGLUE 0x000D
|
|
|
|
#define IMAGE_REL_PPC_IMGLUE 0x000E
|
|
|
|
#define IMAGE_REL_PPC_SECREL16 0x000F
|
|
|
|
#define IMAGE_REL_PPC_REFHI 0x0010
|
|
|
|
#define IMAGE_REL_PPC_REFLO 0x0011
|
|
|
|
#define IMAGE_REL_PPC_PAIR 0x0012
|
|
|
|
#define IMAGE_REL_PPC_SECRELLO 0x0013
|
|
|
|
#define IMAGE_REL_PPC_SECRELHI 0x0014
|
|
|
|
#define IMAGE_REL_PPC_GPREL 0x0015
|
2010-11-16 20:58:52 +01:00
|
|
|
#define IMAGE_REL_PPC_TOKEN 0x0016
|
2000-04-18 13:58:24 +02:00
|
|
|
#define IMAGE_REL_PPC_TYPEMASK 0x00FF
|
|
|
|
/* modifier bits */
|
|
|
|
#define IMAGE_REL_PPC_NEG 0x0100
|
|
|
|
#define IMAGE_REL_PPC_BRTAKEN 0x0200
|
|
|
|
#define IMAGE_REL_PPC_BRNTAKEN 0x0400
|
|
|
|
#define IMAGE_REL_PPC_TOCDEFN 0x0800
|
|
|
|
|
2011-10-28 21:20:29 +02:00
|
|
|
/* SH3 relocation types */
|
2000-04-18 13:58:24 +02:00
|
|
|
#define IMAGE_REL_SH3_ABSOLUTE 0x0000
|
|
|
|
#define IMAGE_REL_SH3_DIRECT16 0x0001
|
|
|
|
#define IMAGE_REL_SH3_DIRECT 0x0002
|
|
|
|
#define IMAGE_REL_SH3_DIRECT8 0x0003
|
|
|
|
#define IMAGE_REL_SH3_DIRECT8_WORD 0x0004
|
|
|
|
#define IMAGE_REL_SH3_DIRECT8_LONG 0x0005
|
|
|
|
#define IMAGE_REL_SH3_DIRECT4 0x0006
|
|
|
|
#define IMAGE_REL_SH3_DIRECT4_WORD 0x0007
|
|
|
|
#define IMAGE_REL_SH3_DIRECT4_LONG 0x0008
|
|
|
|
#define IMAGE_REL_SH3_PCREL8_WORD 0x0009
|
|
|
|
#define IMAGE_REL_SH3_PCREL8_LONG 0x000A
|
|
|
|
#define IMAGE_REL_SH3_PCREL12_WORD 0x000B
|
|
|
|
#define IMAGE_REL_SH3_STARTOF_SECTION 0x000C
|
|
|
|
#define IMAGE_REL_SH3_SIZEOF_SECTION 0x000D
|
|
|
|
#define IMAGE_REL_SH3_SECTION 0x000E
|
|
|
|
#define IMAGE_REL_SH3_SECREL 0x000F
|
|
|
|
#define IMAGE_REL_SH3_DIRECT32_NB 0x0010
|
2010-11-16 20:58:52 +01:00
|
|
|
#define IMAGE_REL_SH3_GPREL4_LONG 0x0011
|
|
|
|
#define IMAGE_REL_SH3_TOKEN 0x0012
|
2000-04-18 13:58:24 +02:00
|
|
|
|
2011-10-28 21:20:29 +02:00
|
|
|
/* ARM relocation types */
|
2000-04-18 13:58:24 +02:00
|
|
|
#define IMAGE_REL_ARM_ABSOLUTE 0x0000
|
|
|
|
#define IMAGE_REL_ARM_ADDR 0x0001
|
|
|
|
#define IMAGE_REL_ARM_ADDR32NB 0x0002
|
|
|
|
#define IMAGE_REL_ARM_BRANCH24 0x0003
|
|
|
|
#define IMAGE_REL_ARM_BRANCH11 0x0004
|
2010-11-16 20:58:52 +01:00
|
|
|
#define IMAGE_REL_ARM_TOKEN 0x0005
|
|
|
|
#define IMAGE_REL_ARM_GPREL12 0x0006
|
|
|
|
#define IMAGE_REL_ARM_GPREL7 0x0007
|
|
|
|
#define IMAGE_REL_ARM_BLX24 0x0008
|
|
|
|
#define IMAGE_REL_ARM_BLX11 0x0009
|
2000-04-18 13:58:24 +02:00
|
|
|
#define IMAGE_REL_ARM_SECTION 0x000E
|
|
|
|
#define IMAGE_REL_ARM_SECREL 0x000F
|
2011-10-28 21:22:05 +02:00
|
|
|
#define IMAGE_REL_ARM_MOV32A 0x0010
|
|
|
|
#define IMAGE_REL_ARM_MOV32T 0x0011
|
|
|
|
#define IMAGE_REL_ARM_BRANCH20T 0x0012
|
|
|
|
#define IMAGE_REL_ARM_BRANCH24T 0x0014
|
|
|
|
#define IMAGE_REL_ARM_BLX23T 0x0015
|
2000-04-18 13:58:24 +02:00
|
|
|
|
2015-05-20 14:31:43 +02:00
|
|
|
/* ARM64 relocation types */
|
|
|
|
#define IMAGE_REL_ARM64_ABSOLUTE 0x0000
|
|
|
|
#define IMAGE_REL_ARM64_ADDR32 0x0001
|
|
|
|
#define IMAGE_REL_ARM64_ADDR32NB 0x0002
|
|
|
|
#define IMAGE_REL_ARM64_BRANCH26 0x0003
|
|
|
|
#define IMAGE_REL_ARM64_PAGEBASE_REL21 0x0004
|
|
|
|
#define IMAGE_REL_ARM64_REL21 0x0005
|
|
|
|
#define IMAGE_REL_ARM64_PAGEOFFSET_12A 0x0006
|
|
|
|
#define IMAGE_REL_ARM64_PAGEOFFSET_12L 0x0007
|
|
|
|
#define IMAGE_REL_ARM64_SECREL 0x0008
|
|
|
|
#define IMAGE_REL_ARM64_SECREL_LOW12A 0x0009
|
|
|
|
#define IMAGE_REL_ARM64_SECREL_HIGH12A 0x000A
|
|
|
|
#define IMAGE_REL_ARM64_SECREL_LOW12L 0x000B
|
|
|
|
#define IMAGE_REL_ARM64_TOKEN 0x000C
|
|
|
|
#define IMAGE_REL_ARM64_SECTION 0x000D
|
|
|
|
#define IMAGE_REL_ARM64_ADDR64 0x000E
|
2018-11-10 15:13:18 +01:00
|
|
|
#define IMAGE_REL_ARM64_BRANCH19 0x000F
|
2015-05-20 14:31:43 +02:00
|
|
|
|
2000-04-18 13:58:24 +02:00
|
|
|
/* IA64 relocation types */
|
|
|
|
#define IMAGE_REL_IA64_ABSOLUTE 0x0000
|
|
|
|
#define IMAGE_REL_IA64_IMM14 0x0001
|
|
|
|
#define IMAGE_REL_IA64_IMM22 0x0002
|
|
|
|
#define IMAGE_REL_IA64_IMM64 0x0003
|
|
|
|
#define IMAGE_REL_IA64_DIR 0x0004
|
|
|
|
#define IMAGE_REL_IA64_DIR64 0x0005
|
|
|
|
#define IMAGE_REL_IA64_PCREL21B 0x0006
|
|
|
|
#define IMAGE_REL_IA64_PCREL21M 0x0007
|
|
|
|
#define IMAGE_REL_IA64_PCREL21F 0x0008
|
|
|
|
#define IMAGE_REL_IA64_GPREL22 0x0009
|
|
|
|
#define IMAGE_REL_IA64_LTOFF22 0x000A
|
|
|
|
#define IMAGE_REL_IA64_SECTION 0x000B
|
|
|
|
#define IMAGE_REL_IA64_SECREL22 0x000C
|
|
|
|
#define IMAGE_REL_IA64_SECREL64I 0x000D
|
|
|
|
#define IMAGE_REL_IA64_SECREL 0x000E
|
|
|
|
#define IMAGE_REL_IA64_LTOFF64 0x000F
|
|
|
|
#define IMAGE_REL_IA64_DIR32NB 0x0010
|
2010-11-16 20:58:52 +01:00
|
|
|
#define IMAGE_REL_IA64_SREL14 0x0011
|
|
|
|
#define IMAGE_REL_IA64_SREL22 0x0012
|
|
|
|
#define IMAGE_REL_IA64_SREL32 0x0013
|
|
|
|
#define IMAGE_REL_IA64_UREL32 0x0014
|
|
|
|
#define IMAGE_REL_IA64_PCREL60X 0x0015
|
|
|
|
#define IMAGE_REL_IA64_PCREL60B 0x0016
|
|
|
|
#define IMAGE_REL_IA64_PCREL60F 0x0017
|
|
|
|
#define IMAGE_REL_IA64_PCREL60I 0x0018
|
|
|
|
#define IMAGE_REL_IA64_PCREL60M 0x0019
|
|
|
|
#define IMAGE_REL_IA64_IMMGPREL64 0x001A
|
|
|
|
#define IMAGE_REL_IA64_TOKEN 0x001B
|
|
|
|
#define IMAGE_REL_IA64_GPREL32 0x001C
|
2000-04-18 13:58:24 +02:00
|
|
|
#define IMAGE_REL_IA64_ADDEND 0x001F
|
|
|
|
|
2006-11-17 05:29:29 +01:00
|
|
|
/* AMD64 relocation types */
|
|
|
|
#define IMAGE_REL_AMD64_ABSOLUTE 0x0000
|
|
|
|
#define IMAGE_REL_AMD64_ADDR64 0x0001
|
|
|
|
#define IMAGE_REL_AMD64_ADDR32 0x0002
|
|
|
|
#define IMAGE_REL_AMD64_ADDR32NB 0x0003
|
|
|
|
#define IMAGE_REL_AMD64_REL32 0x0004
|
|
|
|
#define IMAGE_REL_AMD64_REL32_1 0x0005
|
|
|
|
#define IMAGE_REL_AMD64_REL32_2 0x0006
|
|
|
|
#define IMAGE_REL_AMD64_REL32_3 0x0007
|
|
|
|
#define IMAGE_REL_AMD64_REL32_4 0x0008
|
|
|
|
#define IMAGE_REL_AMD64_REL32_5 0x0009
|
|
|
|
#define IMAGE_REL_AMD64_SECTION 0x000A
|
|
|
|
#define IMAGE_REL_AMD64_SECREL 0x000B
|
|
|
|
#define IMAGE_REL_AMD64_SECREL7 0x000C
|
|
|
|
#define IMAGE_REL_AMD64_TOKEN 0x000D
|
|
|
|
#define IMAGE_REL_AMD64_SREL32 0x000E
|
|
|
|
#define IMAGE_REL_AMD64_PAIR 0x000F
|
|
|
|
#define IMAGE_REL_AMD64_SSPAN32 0x0010
|
|
|
|
|
2000-04-18 13:58:24 +02:00
|
|
|
/* archive format */
|
|
|
|
|
|
|
|
#define IMAGE_ARCHIVE_START_SIZE 8
|
|
|
|
#define IMAGE_ARCHIVE_START "!<arch>\n"
|
|
|
|
#define IMAGE_ARCHIVE_END "`\n"
|
|
|
|
#define IMAGE_ARCHIVE_PAD "\n"
|
|
|
|
#define IMAGE_ARCHIVE_LINKER_MEMBER "/ "
|
|
|
|
#define IMAGE_ARCHIVE_LONGNAMES_MEMBER "// "
|
|
|
|
|
|
|
|
typedef struct _IMAGE_ARCHIVE_MEMBER_HEADER
|
|
|
|
{
|
|
|
|
BYTE Name[16];
|
|
|
|
BYTE Date[12];
|
|
|
|
BYTE UserID[6];
|
|
|
|
BYTE GroupID[6];
|
|
|
|
BYTE Mode[8];
|
|
|
|
BYTE Size[10];
|
|
|
|
BYTE EndHeader[2];
|
|
|
|
} IMAGE_ARCHIVE_MEMBER_HEADER, *PIMAGE_ARCHIVE_MEMBER_HEADER;
|
|
|
|
|
|
|
|
#define IMAGE_SIZEOF_ARCHIVE_MEMBER_HDR 60
|
|
|
|
|
2006-11-26 09:03:25 +01:00
|
|
|
typedef struct _IMPORT_OBJECT_HEADER
|
|
|
|
{
|
|
|
|
WORD Sig1;
|
|
|
|
WORD Sig2;
|
|
|
|
WORD Version;
|
|
|
|
WORD Machine;
|
|
|
|
DWORD TimeDateStamp;
|
|
|
|
DWORD SizeOfData;
|
|
|
|
union
|
|
|
|
{
|
|
|
|
WORD Ordinal;
|
|
|
|
WORD Hint;
|
|
|
|
} DUMMYUNIONNAME;
|
|
|
|
WORD Type : 2;
|
|
|
|
WORD NameType : 3;
|
|
|
|
WORD Reserved : 11;
|
|
|
|
} IMPORT_OBJECT_HEADER;
|
|
|
|
|
|
|
|
#define IMPORT_OBJECT_HDR_SIG2 0xffff
|
|
|
|
|
|
|
|
typedef enum IMPORT_OBJECT_TYPE
|
|
|
|
{
|
|
|
|
IMPORT_OBJECT_CODE = 0,
|
|
|
|
IMPORT_OBJECT_DATA = 1,
|
|
|
|
IMPORT_OBJECT_CONST = 2
|
|
|
|
} IMPORT_OBJECT_TYPE;
|
|
|
|
|
|
|
|
typedef enum IMPORT_OBJECT_NAME_TYPE
|
|
|
|
{
|
|
|
|
IMPORT_OBJECT_ORDINAL = 0,
|
|
|
|
IMPORT_OBJECT_NAME = 1,
|
|
|
|
IMPORT_OBJECT_NAME_NO_PREFIX = 2,
|
|
|
|
IMPORT_OBJECT_NAME_UNDECORATE = 3
|
|
|
|
} IMPORT_OBJECT_NAME_TYPE;
|
|
|
|
|
|
|
|
typedef struct _ANON_OBJECT_HEADER
|
|
|
|
{
|
|
|
|
WORD Sig1;
|
|
|
|
WORD Sig2;
|
|
|
|
WORD Version;
|
|
|
|
WORD Machine;
|
|
|
|
DWORD TimeDateStamp;
|
|
|
|
CLSID ClassID;
|
|
|
|
DWORD SizeOfData;
|
|
|
|
} ANON_OBJECT_HEADER;
|
|
|
|
|
2000-04-18 13:58:24 +02:00
|
|
|
/*
|
|
|
|
* Resource directory stuff
|
|
|
|
*/
|
|
|
|
typedef struct _IMAGE_RESOURCE_DIRECTORY {
|
|
|
|
DWORD Characteristics;
|
|
|
|
DWORD TimeDateStamp;
|
|
|
|
WORD MajorVersion;
|
|
|
|
WORD MinorVersion;
|
|
|
|
WORD NumberOfNamedEntries;
|
|
|
|
WORD NumberOfIdEntries;
|
|
|
|
/* IMAGE_RESOURCE_DIRECTORY_ENTRY DirectoryEntries[]; */
|
|
|
|
} IMAGE_RESOURCE_DIRECTORY,*PIMAGE_RESOURCE_DIRECTORY;
|
|
|
|
|
|
|
|
#define IMAGE_RESOURCE_NAME_IS_STRING 0x80000000
|
|
|
|
#define IMAGE_RESOURCE_DATA_IS_DIRECTORY 0x80000000
|
|
|
|
|
|
|
|
typedef struct _IMAGE_RESOURCE_DIRECTORY_ENTRY {
|
|
|
|
union {
|
|
|
|
struct {
|
2000-12-19 04:38:53 +01:00
|
|
|
#ifdef BITFIELDS_BIGENDIAN
|
|
|
|
unsigned NameIsString:1;
|
|
|
|
unsigned NameOffset:31;
|
|
|
|
#else
|
2000-04-18 13:58:24 +02:00
|
|
|
unsigned NameOffset:31;
|
|
|
|
unsigned NameIsString:1;
|
2000-12-19 04:38:53 +01:00
|
|
|
#endif
|
2013-04-29 09:19:17 +02:00
|
|
|
} DUMMYSTRUCTNAME;
|
2000-04-18 13:58:24 +02:00
|
|
|
DWORD Name;
|
2000-12-19 04:38:53 +01:00
|
|
|
#ifdef WORDS_BIGENDIAN
|
2013-04-29 09:19:17 +02:00
|
|
|
WORD __pad;
|
|
|
|
WORD Id;
|
2000-12-19 04:38:53 +01:00
|
|
|
#else
|
2013-04-29 09:19:17 +02:00
|
|
|
WORD Id;
|
|
|
|
WORD __pad;
|
2000-12-19 04:38:53 +01:00
|
|
|
#endif
|
2013-04-29 09:19:17 +02:00
|
|
|
} DUMMYUNIONNAME;
|
2000-04-18 13:58:24 +02:00
|
|
|
union {
|
|
|
|
DWORD OffsetToData;
|
|
|
|
struct {
|
2000-12-19 04:38:53 +01:00
|
|
|
#ifdef BITFIELDS_BIGENDIAN
|
|
|
|
unsigned DataIsDirectory:1;
|
|
|
|
unsigned OffsetToDirectory:31;
|
|
|
|
#else
|
2000-04-18 13:58:24 +02:00
|
|
|
unsigned OffsetToDirectory:31;
|
|
|
|
unsigned DataIsDirectory:1;
|
2000-12-19 04:38:53 +01:00
|
|
|
#endif
|
2013-04-29 09:19:17 +02:00
|
|
|
} DUMMYSTRUCTNAME2;
|
2000-11-10 23:34:39 +01:00
|
|
|
} DUMMYUNIONNAME2;
|
2000-04-18 13:58:24 +02:00
|
|
|
} IMAGE_RESOURCE_DIRECTORY_ENTRY,*PIMAGE_RESOURCE_DIRECTORY_ENTRY;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct _IMAGE_RESOURCE_DIRECTORY_STRING {
|
|
|
|
WORD Length;
|
|
|
|
CHAR NameString[ 1 ];
|
|
|
|
} IMAGE_RESOURCE_DIRECTORY_STRING,*PIMAGE_RESOURCE_DIRECTORY_STRING;
|
|
|
|
|
|
|
|
typedef struct _IMAGE_RESOURCE_DIR_STRING_U {
|
|
|
|
WORD Length;
|
|
|
|
WCHAR NameString[ 1 ];
|
|
|
|
} IMAGE_RESOURCE_DIR_STRING_U,*PIMAGE_RESOURCE_DIR_STRING_U;
|
|
|
|
|
|
|
|
typedef struct _IMAGE_RESOURCE_DATA_ENTRY {
|
|
|
|
DWORD OffsetToData;
|
|
|
|
DWORD Size;
|
|
|
|
DWORD CodePage;
|
2004-08-13 21:46:28 +02:00
|
|
|
DWORD Reserved;
|
2000-04-18 13:58:24 +02:00
|
|
|
} IMAGE_RESOURCE_DATA_ENTRY,*PIMAGE_RESOURCE_DATA_ENTRY;
|
|
|
|
|
|
|
|
|
2002-02-01 00:22:07 +01:00
|
|
|
typedef VOID (CALLBACK *PIMAGE_TLS_CALLBACK)(
|
2000-04-18 13:58:24 +02:00
|
|
|
LPVOID DllHandle,DWORD Reason,LPVOID Reserved
|
|
|
|
);
|
|
|
|
|
2005-07-19 13:44:32 +02:00
|
|
|
typedef struct _IMAGE_TLS_DIRECTORY64 {
|
|
|
|
ULONGLONG StartAddressOfRawData;
|
|
|
|
ULONGLONG EndAddressOfRawData;
|
|
|
|
ULONGLONG AddressOfIndex;
|
|
|
|
ULONGLONG AddressOfCallBacks;
|
|
|
|
DWORD SizeOfZeroFill;
|
|
|
|
DWORD Characteristics;
|
|
|
|
} IMAGE_TLS_DIRECTORY64, *PIMAGE_TLS_DIRECTORY64;
|
|
|
|
|
|
|
|
typedef struct _IMAGE_TLS_DIRECTORY32 {
|
|
|
|
DWORD StartAddressOfRawData;
|
|
|
|
DWORD EndAddressOfRawData;
|
|
|
|
DWORD AddressOfIndex;
|
|
|
|
DWORD AddressOfCallBacks;
|
|
|
|
DWORD SizeOfZeroFill;
|
|
|
|
DWORD Characteristics;
|
|
|
|
} IMAGE_TLS_DIRECTORY32, *PIMAGE_TLS_DIRECTORY32;
|
|
|
|
|
|
|
|
#ifdef _WIN64
|
|
|
|
typedef IMAGE_TLS_DIRECTORY64 IMAGE_TLS_DIRECTORY;
|
|
|
|
typedef PIMAGE_TLS_DIRECTORY64 PIMAGE_TLS_DIRECTORY;
|
|
|
|
#else
|
|
|
|
typedef IMAGE_TLS_DIRECTORY32 IMAGE_TLS_DIRECTORY;
|
|
|
|
typedef PIMAGE_TLS_DIRECTORY32 PIMAGE_TLS_DIRECTORY;
|
|
|
|
#endif
|
2000-04-18 13:58:24 +02:00
|
|
|
|
|
|
|
typedef struct _IMAGE_DEBUG_DIRECTORY {
|
|
|
|
DWORD Characteristics;
|
|
|
|
DWORD TimeDateStamp;
|
|
|
|
WORD MajorVersion;
|
|
|
|
WORD MinorVersion;
|
|
|
|
DWORD Type;
|
|
|
|
DWORD SizeOfData;
|
|
|
|
DWORD AddressOfRawData;
|
|
|
|
DWORD PointerToRawData;
|
|
|
|
} IMAGE_DEBUG_DIRECTORY, *PIMAGE_DEBUG_DIRECTORY;
|
|
|
|
|
|
|
|
#define IMAGE_DEBUG_TYPE_UNKNOWN 0
|
|
|
|
#define IMAGE_DEBUG_TYPE_COFF 1
|
|
|
|
#define IMAGE_DEBUG_TYPE_CODEVIEW 2
|
|
|
|
#define IMAGE_DEBUG_TYPE_FPO 3
|
|
|
|
#define IMAGE_DEBUG_TYPE_MISC 4
|
|
|
|
#define IMAGE_DEBUG_TYPE_EXCEPTION 5
|
|
|
|
#define IMAGE_DEBUG_TYPE_FIXUP 6
|
|
|
|
#define IMAGE_DEBUG_TYPE_OMAP_TO_SRC 7
|
|
|
|
#define IMAGE_DEBUG_TYPE_OMAP_FROM_SRC 8
|
|
|
|
#define IMAGE_DEBUG_TYPE_BORLAND 9
|
|
|
|
#define IMAGE_DEBUG_TYPE_RESERVED10 10
|
2013-03-23 17:16:20 +01:00
|
|
|
#define IMAGE_DEBUG_TYPE_CLSID 11
|
2015-05-27 22:33:30 +02:00
|
|
|
#define IMAGE_DEBUG_TYPE_VC_FEATURE 12
|
|
|
|
#define IMAGE_DEBUG_TYPE_POGO 13
|
|
|
|
#define IMAGE_DEBUG_TYPE_ILTCG 14
|
|
|
|
#define IMAGE_DEBUG_TYPE_MPX 15
|
2018-11-13 12:29:43 +01:00
|
|
|
#define IMAGE_DEBUG_TYPE_REPRO 16
|
2000-04-18 13:58:24 +02:00
|
|
|
|
2006-12-19 22:26:56 +01:00
|
|
|
typedef enum ReplacesCorHdrNumericDefines
|
|
|
|
{
|
|
|
|
COMIMAGE_FLAGS_ILONLY = 0x00000001,
|
|
|
|
COMIMAGE_FLAGS_32BITREQUIRED = 0x00000002,
|
|
|
|
COMIMAGE_FLAGS_IL_LIBRARY = 0x00000004,
|
|
|
|
COMIMAGE_FLAGS_STRONGNAMESIGNED = 0x00000008,
|
2016-01-30 02:36:49 +01:00
|
|
|
COMIMAGE_FLAGS_NATIVE_ENTRYPOINT= 0x00000010,
|
2006-12-19 22:26:56 +01:00
|
|
|
COMIMAGE_FLAGS_TRACKDEBUGDATA = 0x00010000,
|
2018-02-15 08:07:09 +01:00
|
|
|
COMIMAGE_FLAGS_32BITPREFERRED = 0x00020000,
|
2006-12-19 22:26:56 +01:00
|
|
|
|
|
|
|
COR_VERSION_MAJOR_V2 = 2,
|
|
|
|
COR_VERSION_MAJOR = COR_VERSION_MAJOR_V2,
|
2018-02-15 08:07:09 +01:00
|
|
|
COR_VERSION_MINOR = 5,
|
2006-12-19 22:26:56 +01:00
|
|
|
COR_DELETED_NAME_LENGTH = 8,
|
|
|
|
COR_VTABLEGAP_NAME_LENGTH = 8,
|
|
|
|
|
|
|
|
NATIVE_TYPE_MAX_CB = 1,
|
|
|
|
COR_ILMETHOD_SECT_SMALL_MAX_DATASIZE = 0xff,
|
|
|
|
|
|
|
|
IMAGE_COR_MIH_METHODRVA = 0x01,
|
|
|
|
IMAGE_COR_MIH_EHRVA = 0x02,
|
|
|
|
IMAGE_COR_MIH_BASICBLOCK = 0x08,
|
|
|
|
|
|
|
|
COR_VTABLE_32BIT = 0x01,
|
|
|
|
COR_VTABLE_64BIT = 0x02,
|
|
|
|
COR_VTABLE_FROM_UNMANAGED = 0x04,
|
|
|
|
COR_VTABLE_CALL_MOST_DERIVED = 0x10,
|
|
|
|
|
|
|
|
IMAGE_COR_EATJ_THUNK_SIZE = 32,
|
|
|
|
|
|
|
|
MAX_CLASS_NAME = 1024,
|
|
|
|
MAX_PACKAGE_NAME = 1024,
|
|
|
|
} ReplacesCorHdrNumericDefines;
|
|
|
|
|
|
|
|
typedef struct IMAGE_COR20_HEADER
|
|
|
|
{
|
|
|
|
DWORD cb;
|
|
|
|
WORD MajorRuntimeVersion;
|
|
|
|
WORD MinorRuntimeVersion;
|
|
|
|
|
|
|
|
IMAGE_DATA_DIRECTORY MetaData;
|
|
|
|
DWORD Flags;
|
2012-06-17 15:51:56 +02:00
|
|
|
union {
|
|
|
|
DWORD EntryPointToken;
|
|
|
|
DWORD EntryPointRVA;
|
|
|
|
} DUMMYUNIONNAME;
|
2006-12-19 22:26:56 +01:00
|
|
|
|
|
|
|
IMAGE_DATA_DIRECTORY Resources;
|
|
|
|
IMAGE_DATA_DIRECTORY StrongNameSignature;
|
|
|
|
IMAGE_DATA_DIRECTORY CodeManagerTable;
|
|
|
|
IMAGE_DATA_DIRECTORY VTableFixups;
|
|
|
|
IMAGE_DATA_DIRECTORY ExportAddressTableJumps;
|
|
|
|
IMAGE_DATA_DIRECTORY ManagedNativeHeader;
|
|
|
|
|
|
|
|
} IMAGE_COR20_HEADER, *PIMAGE_COR20_HEADER;
|
|
|
|
|
2000-04-18 13:58:24 +02:00
|
|
|
typedef struct _IMAGE_COFF_SYMBOLS_HEADER {
|
|
|
|
DWORD NumberOfSymbols;
|
|
|
|
DWORD LvaToFirstSymbol;
|
|
|
|
DWORD NumberOfLinenumbers;
|
|
|
|
DWORD LvaToFirstLinenumber;
|
|
|
|
DWORD RvaToFirstByteOfCode;
|
|
|
|
DWORD RvaToLastByteOfCode;
|
|
|
|
DWORD RvaToFirstByteOfData;
|
|
|
|
DWORD RvaToLastByteOfData;
|
|
|
|
} IMAGE_COFF_SYMBOLS_HEADER, *PIMAGE_COFF_SYMBOLS_HEADER;
|
|
|
|
|
|
|
|
#define FRAME_FPO 0
|
|
|
|
#define FRAME_TRAP 1
|
|
|
|
#define FRAME_TSS 2
|
|
|
|
#define FRAME_NONFPO 3
|
|
|
|
|
|
|
|
typedef struct _FPO_DATA {
|
|
|
|
DWORD ulOffStart;
|
|
|
|
DWORD cbProcSize;
|
|
|
|
DWORD cdwLocals;
|
|
|
|
WORD cdwParams;
|
2004-08-23 00:28:53 +02:00
|
|
|
WORD cbProlog : 8;
|
|
|
|
WORD cbRegs : 3;
|
|
|
|
WORD fHasSEH : 1;
|
|
|
|
WORD fUseBP : 1;
|
|
|
|
WORD reserved : 1;
|
|
|
|
WORD cbFrame : 2;
|
2000-04-18 13:58:24 +02:00
|
|
|
} FPO_DATA, *PFPO_DATA;
|
|
|
|
|
2015-06-23 20:57:32 +02:00
|
|
|
typedef struct _IMAGE_LOAD_CONFIG_DIRECTORY64 {
|
|
|
|
DWORD Size;
|
|
|
|
DWORD TimeDateStamp;
|
|
|
|
WORD MajorVersion;
|
|
|
|
WORD MinorVersion;
|
|
|
|
DWORD GlobalFlagsClear;
|
|
|
|
DWORD GlobalFlagsSet;
|
|
|
|
DWORD CriticalSectionDefaultTimeout;
|
|
|
|
ULONGLONG DeCommitFreeBlockThreshold;
|
|
|
|
ULONGLONG DeCommitTotalFreeThreshold;
|
|
|
|
ULONGLONG LockPrefixTable;
|
|
|
|
ULONGLONG MaximumAllocationSize;
|
|
|
|
ULONGLONG VirtualMemoryThreshold;
|
|
|
|
ULONGLONG ProcessAffinityMask;
|
|
|
|
DWORD ProcessHeapFlags;
|
|
|
|
WORD CSDVersion;
|
|
|
|
WORD Reserved1;
|
|
|
|
ULONGLONG EditList;
|
|
|
|
ULONGLONG SecurityCookie;
|
|
|
|
ULONGLONG SEHandlerTable;
|
|
|
|
ULONGLONG SEHandlerCount;
|
|
|
|
} IMAGE_LOAD_CONFIG_DIRECTORY64, *PIMAGE_LOAD_CONFIG_DIRECTORY64;
|
|
|
|
|
|
|
|
typedef struct _IMAGE_LOAD_CONFIG_DIRECTORY32 {
|
2004-08-23 00:28:53 +02:00
|
|
|
DWORD Size;
|
2000-04-18 13:58:24 +02:00
|
|
|
DWORD TimeDateStamp;
|
|
|
|
WORD MajorVersion;
|
|
|
|
WORD MinorVersion;
|
|
|
|
DWORD GlobalFlagsClear;
|
|
|
|
DWORD GlobalFlagsSet;
|
|
|
|
DWORD CriticalSectionDefaultTimeout;
|
|
|
|
DWORD DeCommitFreeBlockThreshold;
|
|
|
|
DWORD DeCommitTotalFreeThreshold;
|
|
|
|
PVOID LockPrefixTable;
|
|
|
|
DWORD MaximumAllocationSize;
|
|
|
|
DWORD VirtualMemoryThreshold;
|
|
|
|
DWORD ProcessHeapFlags;
|
|
|
|
DWORD ProcessAffinityMask;
|
|
|
|
WORD CSDVersion;
|
|
|
|
WORD Reserved1;
|
|
|
|
PVOID EditList;
|
2004-08-23 00:28:53 +02:00
|
|
|
DWORD SecurityCookie;
|
|
|
|
DWORD SEHandlerTable;
|
|
|
|
DWORD SEHandlerCount;
|
2015-06-23 20:57:32 +02:00
|
|
|
} IMAGE_LOAD_CONFIG_DIRECTORY32, *PIMAGE_LOAD_CONFIG_DIRECTORY32;
|
|
|
|
|
|
|
|
#ifdef _WIN64
|
|
|
|
typedef IMAGE_LOAD_CONFIG_DIRECTORY64 IMAGE_LOAD_CONFIG_DIRECTORY;
|
|
|
|
typedef PIMAGE_LOAD_CONFIG_DIRECTORY64 PIMAGE_LOAD_CONFIG_DIRECTORY;
|
|
|
|
#else
|
|
|
|
typedef IMAGE_LOAD_CONFIG_DIRECTORY32 IMAGE_LOAD_CONFIG_DIRECTORY;
|
|
|
|
typedef PIMAGE_LOAD_CONFIG_DIRECTORY32 PIMAGE_LOAD_CONFIG_DIRECTORY;
|
|
|
|
#endif
|
2000-04-18 13:58:24 +02:00
|
|
|
|
|
|
|
typedef struct _IMAGE_FUNCTION_ENTRY {
|
|
|
|
DWORD StartingAddress;
|
|
|
|
DWORD EndingAddress;
|
|
|
|
DWORD EndOfPrologue;
|
|
|
|
} IMAGE_FUNCTION_ENTRY, *PIMAGE_FUNCTION_ENTRY;
|
|
|
|
|
2000-11-07 21:29:00 +01:00
|
|
|
#define IMAGE_DEBUG_MISC_EXENAME 1
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2000-11-07 21:29:00 +01:00
|
|
|
typedef struct _IMAGE_DEBUG_MISC {
|
|
|
|
DWORD DataType;
|
|
|
|
DWORD Length;
|
|
|
|
BYTE Unicode;
|
|
|
|
BYTE Reserved[ 3 ];
|
|
|
|
BYTE Data[ 1 ];
|
|
|
|
} IMAGE_DEBUG_MISC, *PIMAGE_DEBUG_MISC;
|
|
|
|
|
2000-04-18 13:58:24 +02:00
|
|
|
/* This is the structure that appears at the very start of a .DBG file. */
|
|
|
|
|
|
|
|
typedef struct _IMAGE_SEPARATE_DEBUG_HEADER {
|
|
|
|
WORD Signature;
|
|
|
|
WORD Flags;
|
|
|
|
WORD Machine;
|
|
|
|
WORD Characteristics;
|
|
|
|
DWORD TimeDateStamp;
|
|
|
|
DWORD CheckSum;
|
|
|
|
DWORD ImageBase;
|
|
|
|
DWORD SizeOfImage;
|
|
|
|
DWORD NumberOfSections;
|
|
|
|
DWORD ExportedNamesSize;
|
|
|
|
DWORD DebugDirectorySize;
|
|
|
|
DWORD SectionAlignment;
|
|
|
|
DWORD Reserved[ 2 ];
|
|
|
|
} IMAGE_SEPARATE_DEBUG_HEADER,*PIMAGE_SEPARATE_DEBUG_HEADER;
|
|
|
|
|
|
|
|
#define IMAGE_SEPARATE_DEBUG_SIGNATURE 0x4944
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct tagMESSAGE_RESOURCE_ENTRY {
|
|
|
|
WORD Length;
|
|
|
|
WORD Flags;
|
|
|
|
BYTE Text[1];
|
|
|
|
} MESSAGE_RESOURCE_ENTRY,*PMESSAGE_RESOURCE_ENTRY;
|
|
|
|
#define MESSAGE_RESOURCE_UNICODE 0x0001
|
|
|
|
|
|
|
|
typedef struct tagMESSAGE_RESOURCE_BLOCK {
|
|
|
|
DWORD LowId;
|
|
|
|
DWORD HighId;
|
|
|
|
DWORD OffsetToEntries;
|
|
|
|
} MESSAGE_RESOURCE_BLOCK,*PMESSAGE_RESOURCE_BLOCK;
|
|
|
|
|
|
|
|
typedef struct tagMESSAGE_RESOURCE_DATA {
|
|
|
|
DWORD NumberOfBlocks;
|
|
|
|
MESSAGE_RESOURCE_BLOCK Blocks[ 1 ];
|
|
|
|
} MESSAGE_RESOURCE_DATA,*PMESSAGE_RESOURCE_DATA;
|
|
|
|
|
Release 980614
Sun Jun 15 10:30:35 1998 Andreas Mohr <100.30936@germany.net>
* [files/dos_fs.c] [files/file.c] [if1632/wprocs.spec]
[misc/aspi.c]
Added support for scanners that need Adaptec's ASPI2DOS.
* [graphics/env.c] [misc/printerdrv.c] [graphics/win16drv/init.c]
[if1632/gdi.spec] [include/gdi.h]
Enhanced printer support (especially Win95):
Drv[GS]etPrinterData, [GS]etEnvironment; added AbortProc handling.
* [misc/tapi32.c] [relay32/tapi32.spec]
Added some stubs.
* [configure.in] [graphics/fontengine.c] [include/windows.h]
[misc/comm.c] [misc/w32skrnl.c] [misc/win32s16.c]
Made Wine compile on HP-UX (just for fun ;)
* [controls/menu.c] [include/windows.h]
Complete rewrite of EnableMenuItem32.
Free Agent 32 still doesn't work :(
* [misc/version.c] [if1632/kernel.spec] [include/winbase.h]
Implemented GetVersionEx16.
* [misc/network.c] [if1632/user.spec]
Fixed arguments of WNetGetPropertyText.
* [misc/version.c] [relay32/comctl32.spec] [relay32/oleaut32.spec]
Implemented COMCTL32_DllGetVersion, OaBuildVersion.
* [win32/file.c]
Fixed UNC handling of CreateFile32.
Sat Jun 13 22:35:12 1998 Douglas Ridgway <ridgway@winehq.com>
* [Makefile.in] [Make.rules.in]
Added pattern for CVS merge files to 'make clean'
* [ole/olecli.c] [windows/scroll.c] [windows/grahics.c]
Add some DC handle unlocking. (When hdc's are always unlocked,
they can be made moveable.)
* [documentation/wine.texinfo]
Started a Wine Design chapter with discussion of
graphics driver model.
Sat Jun 13 11:19:25 1998 David Luyer <luyer@ucs.uwa.edu.au>
* [misc/main.c] [relay32/relay386.c]
Added new option -debugmsg +relay=.... or -debugmsg -relay=...
Fri Jun 12 22:56:09 1998 Marcus Meissner <marcus@jet.franken.de>
* [relay32/snoop.c][relay32/builtin.c][loader/pe_image.c]
Added inter win32 dll snooping. Use -debugmsg +snoop.
Number of arguments and string references are autodetected.
Some small bugfixes in the PE loader.
* [misc/system.c]
Disabled SystemTimers. They do not work with the current
%fs handling in the 32->16 relaycode. (helps labview)
* [msdos/dpmi.c][msdos/int2f.c][files/drive.c]
Added a monoton linear increasing memory allocator for DPMI (required
for LabView, HAFAS, ...)
mscdex handling in emulated realmode interrupts (for mcicda.drv)
allocate logical drives only once. (helps Myst)
* [files/profile.c]
Handle ^Z as space. Found on CDROMS (helps Myst Installer).
* [multimedia/mmio.c]
mmio* partially updated to win32. No funny additions.
* [windows/driver.c]
Added win32 driver handling (will be used for win32 multimedia/
msvideo drivers).
* [win32/device.c]
Added device handling (K32OBJ_DEVICE_IOCTL). Implemented
VTDAPI.5 (used by win95' WINMM.timeGetTime())
Fri Jun 12 18:01:18 1998 Rein Klazes <rklazes@casema.net>
* [ole/compobj.c relay32/ole32.spec]
Add a stub for CoLockObjectExternal32.
* [objects/clipping.c]
Fix in IntersectClipRect(), when there is no initial clipping
region.
* [graphics/x11drv/graphics.c]
Corrected several "one-off" errors for the Ellipse, Rectangle
and RoundRectangle (especially small ones) draw routines.
Arc and friends still have to be done.
Fri Jun 12 06:23:19 1998 Matthew Becker <mbecker@glasscity.net>
* [misc/ntdll.c]
Fixed some of the parameter counts.
* [misc/registry.c]
General cleanup, documentation.
Standard keys are allowed to be 'closed' and succeed.
* [misc/shell.c]
Check for correct return values from Reg* functions.
* [win32/newfns.c]
Added stubs for OpenDesktopA, SetThreadDesktop, and
SetUserObjectInformationA.
Wed Jun 10 20:28:08 1998 James Juran <jrj120@psu.edu>
* [debugger/break.c]
Fixed bug introduced in 980503 that broke the -debug command
line option for PE executable files.
* [configure.in] [include/acconfig.h] [include/debugtools.h]
[documentation/debug-msgs]
Added 'configure' options to compile out debugging messages.
Use --disable-debug to disable all debugging messages, and
--disable-trace to just disable TRACE messages. This results
in a stripped executable that is 15-20% smaller. This option
is very much untested--don't expect it to work.
* [documentation/debug-msgs] [documentation/debugging]
Minor updates.
* [*/*.c]
Fixed some compile warnings. This also includes the
compile_warnings_trivial patch from WineHQ.
Tue Jun 10 22:00:18 1998 Eric Kohl <ekohl@abo.rhein-zeitung.de>
* [windows/sysmetrics.c][include/sysmetrics.h]
Fixed some Win95 values.
* [windows/nonclient.c][include/windows.h]
Fixed some Win95 drawing bugs.
Added extended window style flags (WS_EX_xxx).
* [misc/printdrv.c][relay32/winspool.spec]
Added stubs for DeletePrinterDriver32A, DeleteMonitor32A
and DeletePort32A.
* [windows/mdi.c][include/windows.h][relay32/user32.spec]
Added stubs for CascadeWindows and TileWindows.
* [controls/toolbar.c][include/toolbar.h]
Fixed a few bugs and implemented new features.
* [misc/shellord.c][relay32/shell32.spec]
Added stubs for SHELL32_60, SHELL32_61 and SHELL32_184.
* [controls/comctl32undoc.c][relay32/comctl32.spec]
New file comctl32undoc.c. Contains undocumented functions
of COMCTL32.DLL. These functions are needed to run EXPLORER.EXE
IEXPLORE.EXE and TASKMAN.EXE.
* [controls/status.c]
Added text alignment.
Tue Jun 8 22:00:00 1998 Bertho Stultiens <bertho@akhphd.au.dk>
* [programs/*/Makefile.in]
Changed the rules to use wrc as resource compiler but
passing the source through gcc first for macro expansion.
* [programs/*/*.rc]
Added #include "windows.h" for the resource compiler in the
appropriate files.
* [tools/wrc/wrc.[ch]] [tools/wrc/writeres.c]
Added commandline option -A for autoregister code.
Corrected the underscore problem by checking the proper define
from config.h.
Sun Jun 7 22:09:29 1998 Pascal Cuoq <pcuoq@ens-lyon.fr>
* [ole/ole2nls.c] [memory/string.c]
Improved LCMapString32A, and changed CompareString32A,
lstrcmp, lstrcmpi to use it.
Sat Jun 6 19:00:50 1998 Martin Strmberg <ams@ludd.luth.se>
* [include/winnt.h]
Added typedefs for security and tokens.
Sat Jun 6 12:26:31 1998 Morten Welinder <terra@diku.dk>
* [objects/text.c]
Use debugstr_an in DrawText16.
* [loader/resource.c]
Use debugres_w in FindResourceEx32W. Avoid crashing during
debug when wm is NULL.
* [if1632/relay.c]
In RELAY_DebugCallTo16, send output to the right place and
avoid side effects in macro arguments.
Wed Jun 3 20:56:03 1998 Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
* [controls/scroll.c] [windows/nonclient.c]
Fix several off by one errors in scrollbar painting.
Tue Jun 2 23:58:59 1998 Insomnia (Stea Greene) <insomnia@core.binghamton.edu>
* [graphics/dsound.c]
Rewrote mixer code to handle panning and volume for 16->16, 16->8,
8->16, and 8->8 bit mixes. Conforms to DirectX's "logarithmic
hearing scale" as specified in M$VC docs. Still does not handle
mixing of different frequencies (I am still working on that).
Tested 16->16 extensively with StarCraft. Other mixing combinations
untested but should work fine. Still kind of a work in progress,
so be warned.
Tue Jun 2 03:31:33 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [tools/wrc/utils.c]
dup_basename: fix to strip directory.
Mon Jun 1 20:00:00 1998 Juergen Schmied <juergen.schmied@metronet.de>
* [include/windows.h] [objects/cursoricon.c] [relay32/user32.spec]
Added stubs LoadCursorFromFileW and LoadCursorFromFileA.
1998-06-14 17:24:15 +02:00
|
|
|
/*
|
|
|
|
* Here follows typedefs for security and tokens.
|
2002-06-01 01:06:46 +02:00
|
|
|
*/
|
Release 980614
Sun Jun 15 10:30:35 1998 Andreas Mohr <100.30936@germany.net>
* [files/dos_fs.c] [files/file.c] [if1632/wprocs.spec]
[misc/aspi.c]
Added support for scanners that need Adaptec's ASPI2DOS.
* [graphics/env.c] [misc/printerdrv.c] [graphics/win16drv/init.c]
[if1632/gdi.spec] [include/gdi.h]
Enhanced printer support (especially Win95):
Drv[GS]etPrinterData, [GS]etEnvironment; added AbortProc handling.
* [misc/tapi32.c] [relay32/tapi32.spec]
Added some stubs.
* [configure.in] [graphics/fontengine.c] [include/windows.h]
[misc/comm.c] [misc/w32skrnl.c] [misc/win32s16.c]
Made Wine compile on HP-UX (just for fun ;)
* [controls/menu.c] [include/windows.h]
Complete rewrite of EnableMenuItem32.
Free Agent 32 still doesn't work :(
* [misc/version.c] [if1632/kernel.spec] [include/winbase.h]
Implemented GetVersionEx16.
* [misc/network.c] [if1632/user.spec]
Fixed arguments of WNetGetPropertyText.
* [misc/version.c] [relay32/comctl32.spec] [relay32/oleaut32.spec]
Implemented COMCTL32_DllGetVersion, OaBuildVersion.
* [win32/file.c]
Fixed UNC handling of CreateFile32.
Sat Jun 13 22:35:12 1998 Douglas Ridgway <ridgway@winehq.com>
* [Makefile.in] [Make.rules.in]
Added pattern for CVS merge files to 'make clean'
* [ole/olecli.c] [windows/scroll.c] [windows/grahics.c]
Add some DC handle unlocking. (When hdc's are always unlocked,
they can be made moveable.)
* [documentation/wine.texinfo]
Started a Wine Design chapter with discussion of
graphics driver model.
Sat Jun 13 11:19:25 1998 David Luyer <luyer@ucs.uwa.edu.au>
* [misc/main.c] [relay32/relay386.c]
Added new option -debugmsg +relay=.... or -debugmsg -relay=...
Fri Jun 12 22:56:09 1998 Marcus Meissner <marcus@jet.franken.de>
* [relay32/snoop.c][relay32/builtin.c][loader/pe_image.c]
Added inter win32 dll snooping. Use -debugmsg +snoop.
Number of arguments and string references are autodetected.
Some small bugfixes in the PE loader.
* [misc/system.c]
Disabled SystemTimers. They do not work with the current
%fs handling in the 32->16 relaycode. (helps labview)
* [msdos/dpmi.c][msdos/int2f.c][files/drive.c]
Added a monoton linear increasing memory allocator for DPMI (required
for LabView, HAFAS, ...)
mscdex handling in emulated realmode interrupts (for mcicda.drv)
allocate logical drives only once. (helps Myst)
* [files/profile.c]
Handle ^Z as space. Found on CDROMS (helps Myst Installer).
* [multimedia/mmio.c]
mmio* partially updated to win32. No funny additions.
* [windows/driver.c]
Added win32 driver handling (will be used for win32 multimedia/
msvideo drivers).
* [win32/device.c]
Added device handling (K32OBJ_DEVICE_IOCTL). Implemented
VTDAPI.5 (used by win95' WINMM.timeGetTime())
Fri Jun 12 18:01:18 1998 Rein Klazes <rklazes@casema.net>
* [ole/compobj.c relay32/ole32.spec]
Add a stub for CoLockObjectExternal32.
* [objects/clipping.c]
Fix in IntersectClipRect(), when there is no initial clipping
region.
* [graphics/x11drv/graphics.c]
Corrected several "one-off" errors for the Ellipse, Rectangle
and RoundRectangle (especially small ones) draw routines.
Arc and friends still have to be done.
Fri Jun 12 06:23:19 1998 Matthew Becker <mbecker@glasscity.net>
* [misc/ntdll.c]
Fixed some of the parameter counts.
* [misc/registry.c]
General cleanup, documentation.
Standard keys are allowed to be 'closed' and succeed.
* [misc/shell.c]
Check for correct return values from Reg* functions.
* [win32/newfns.c]
Added stubs for OpenDesktopA, SetThreadDesktop, and
SetUserObjectInformationA.
Wed Jun 10 20:28:08 1998 James Juran <jrj120@psu.edu>
* [debugger/break.c]
Fixed bug introduced in 980503 that broke the -debug command
line option for PE executable files.
* [configure.in] [include/acconfig.h] [include/debugtools.h]
[documentation/debug-msgs]
Added 'configure' options to compile out debugging messages.
Use --disable-debug to disable all debugging messages, and
--disable-trace to just disable TRACE messages. This results
in a stripped executable that is 15-20% smaller. This option
is very much untested--don't expect it to work.
* [documentation/debug-msgs] [documentation/debugging]
Minor updates.
* [*/*.c]
Fixed some compile warnings. This also includes the
compile_warnings_trivial patch from WineHQ.
Tue Jun 10 22:00:18 1998 Eric Kohl <ekohl@abo.rhein-zeitung.de>
* [windows/sysmetrics.c][include/sysmetrics.h]
Fixed some Win95 values.
* [windows/nonclient.c][include/windows.h]
Fixed some Win95 drawing bugs.
Added extended window style flags (WS_EX_xxx).
* [misc/printdrv.c][relay32/winspool.spec]
Added stubs for DeletePrinterDriver32A, DeleteMonitor32A
and DeletePort32A.
* [windows/mdi.c][include/windows.h][relay32/user32.spec]
Added stubs for CascadeWindows and TileWindows.
* [controls/toolbar.c][include/toolbar.h]
Fixed a few bugs and implemented new features.
* [misc/shellord.c][relay32/shell32.spec]
Added stubs for SHELL32_60, SHELL32_61 and SHELL32_184.
* [controls/comctl32undoc.c][relay32/comctl32.spec]
New file comctl32undoc.c. Contains undocumented functions
of COMCTL32.DLL. These functions are needed to run EXPLORER.EXE
IEXPLORE.EXE and TASKMAN.EXE.
* [controls/status.c]
Added text alignment.
Tue Jun 8 22:00:00 1998 Bertho Stultiens <bertho@akhphd.au.dk>
* [programs/*/Makefile.in]
Changed the rules to use wrc as resource compiler but
passing the source through gcc first for macro expansion.
* [programs/*/*.rc]
Added #include "windows.h" for the resource compiler in the
appropriate files.
* [tools/wrc/wrc.[ch]] [tools/wrc/writeres.c]
Added commandline option -A for autoregister code.
Corrected the underscore problem by checking the proper define
from config.h.
Sun Jun 7 22:09:29 1998 Pascal Cuoq <pcuoq@ens-lyon.fr>
* [ole/ole2nls.c] [memory/string.c]
Improved LCMapString32A, and changed CompareString32A,
lstrcmp, lstrcmpi to use it.
Sat Jun 6 19:00:50 1998 Martin Strmberg <ams@ludd.luth.se>
* [include/winnt.h]
Added typedefs for security and tokens.
Sat Jun 6 12:26:31 1998 Morten Welinder <terra@diku.dk>
* [objects/text.c]
Use debugstr_an in DrawText16.
* [loader/resource.c]
Use debugres_w in FindResourceEx32W. Avoid crashing during
debug when wm is NULL.
* [if1632/relay.c]
In RELAY_DebugCallTo16, send output to the right place and
avoid side effects in macro arguments.
Wed Jun 3 20:56:03 1998 Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
* [controls/scroll.c] [windows/nonclient.c]
Fix several off by one errors in scrollbar painting.
Tue Jun 2 23:58:59 1998 Insomnia (Stea Greene) <insomnia@core.binghamton.edu>
* [graphics/dsound.c]
Rewrote mixer code to handle panning and volume for 16->16, 16->8,
8->16, and 8->8 bit mixes. Conforms to DirectX's "logarithmic
hearing scale" as specified in M$VC docs. Still does not handle
mixing of different frequencies (I am still working on that).
Tested 16->16 extensively with StarCraft. Other mixing combinations
untested but should work fine. Still kind of a work in progress,
so be warned.
Tue Jun 2 03:31:33 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [tools/wrc/utils.c]
dup_basename: fix to strip directory.
Mon Jun 1 20:00:00 1998 Juergen Schmied <juergen.schmied@metronet.de>
* [include/windows.h] [objects/cursoricon.c] [relay32/user32.spec]
Added stubs LoadCursorFromFileW and LoadCursorFromFileA.
1998-06-14 17:24:15 +02:00
|
|
|
|
|
|
|
/*
|
2004-08-26 02:31:20 +02:00
|
|
|
* First a constant for the following typedefs.
|
Release 980614
Sun Jun 15 10:30:35 1998 Andreas Mohr <100.30936@germany.net>
* [files/dos_fs.c] [files/file.c] [if1632/wprocs.spec]
[misc/aspi.c]
Added support for scanners that need Adaptec's ASPI2DOS.
* [graphics/env.c] [misc/printerdrv.c] [graphics/win16drv/init.c]
[if1632/gdi.spec] [include/gdi.h]
Enhanced printer support (especially Win95):
Drv[GS]etPrinterData, [GS]etEnvironment; added AbortProc handling.
* [misc/tapi32.c] [relay32/tapi32.spec]
Added some stubs.
* [configure.in] [graphics/fontengine.c] [include/windows.h]
[misc/comm.c] [misc/w32skrnl.c] [misc/win32s16.c]
Made Wine compile on HP-UX (just for fun ;)
* [controls/menu.c] [include/windows.h]
Complete rewrite of EnableMenuItem32.
Free Agent 32 still doesn't work :(
* [misc/version.c] [if1632/kernel.spec] [include/winbase.h]
Implemented GetVersionEx16.
* [misc/network.c] [if1632/user.spec]
Fixed arguments of WNetGetPropertyText.
* [misc/version.c] [relay32/comctl32.spec] [relay32/oleaut32.spec]
Implemented COMCTL32_DllGetVersion, OaBuildVersion.
* [win32/file.c]
Fixed UNC handling of CreateFile32.
Sat Jun 13 22:35:12 1998 Douglas Ridgway <ridgway@winehq.com>
* [Makefile.in] [Make.rules.in]
Added pattern for CVS merge files to 'make clean'
* [ole/olecli.c] [windows/scroll.c] [windows/grahics.c]
Add some DC handle unlocking. (When hdc's are always unlocked,
they can be made moveable.)
* [documentation/wine.texinfo]
Started a Wine Design chapter with discussion of
graphics driver model.
Sat Jun 13 11:19:25 1998 David Luyer <luyer@ucs.uwa.edu.au>
* [misc/main.c] [relay32/relay386.c]
Added new option -debugmsg +relay=.... or -debugmsg -relay=...
Fri Jun 12 22:56:09 1998 Marcus Meissner <marcus@jet.franken.de>
* [relay32/snoop.c][relay32/builtin.c][loader/pe_image.c]
Added inter win32 dll snooping. Use -debugmsg +snoop.
Number of arguments and string references are autodetected.
Some small bugfixes in the PE loader.
* [misc/system.c]
Disabled SystemTimers. They do not work with the current
%fs handling in the 32->16 relaycode. (helps labview)
* [msdos/dpmi.c][msdos/int2f.c][files/drive.c]
Added a monoton linear increasing memory allocator for DPMI (required
for LabView, HAFAS, ...)
mscdex handling in emulated realmode interrupts (for mcicda.drv)
allocate logical drives only once. (helps Myst)
* [files/profile.c]
Handle ^Z as space. Found on CDROMS (helps Myst Installer).
* [multimedia/mmio.c]
mmio* partially updated to win32. No funny additions.
* [windows/driver.c]
Added win32 driver handling (will be used for win32 multimedia/
msvideo drivers).
* [win32/device.c]
Added device handling (K32OBJ_DEVICE_IOCTL). Implemented
VTDAPI.5 (used by win95' WINMM.timeGetTime())
Fri Jun 12 18:01:18 1998 Rein Klazes <rklazes@casema.net>
* [ole/compobj.c relay32/ole32.spec]
Add a stub for CoLockObjectExternal32.
* [objects/clipping.c]
Fix in IntersectClipRect(), when there is no initial clipping
region.
* [graphics/x11drv/graphics.c]
Corrected several "one-off" errors for the Ellipse, Rectangle
and RoundRectangle (especially small ones) draw routines.
Arc and friends still have to be done.
Fri Jun 12 06:23:19 1998 Matthew Becker <mbecker@glasscity.net>
* [misc/ntdll.c]
Fixed some of the parameter counts.
* [misc/registry.c]
General cleanup, documentation.
Standard keys are allowed to be 'closed' and succeed.
* [misc/shell.c]
Check for correct return values from Reg* functions.
* [win32/newfns.c]
Added stubs for OpenDesktopA, SetThreadDesktop, and
SetUserObjectInformationA.
Wed Jun 10 20:28:08 1998 James Juran <jrj120@psu.edu>
* [debugger/break.c]
Fixed bug introduced in 980503 that broke the -debug command
line option for PE executable files.
* [configure.in] [include/acconfig.h] [include/debugtools.h]
[documentation/debug-msgs]
Added 'configure' options to compile out debugging messages.
Use --disable-debug to disable all debugging messages, and
--disable-trace to just disable TRACE messages. This results
in a stripped executable that is 15-20% smaller. This option
is very much untested--don't expect it to work.
* [documentation/debug-msgs] [documentation/debugging]
Minor updates.
* [*/*.c]
Fixed some compile warnings. This also includes the
compile_warnings_trivial patch from WineHQ.
Tue Jun 10 22:00:18 1998 Eric Kohl <ekohl@abo.rhein-zeitung.de>
* [windows/sysmetrics.c][include/sysmetrics.h]
Fixed some Win95 values.
* [windows/nonclient.c][include/windows.h]
Fixed some Win95 drawing bugs.
Added extended window style flags (WS_EX_xxx).
* [misc/printdrv.c][relay32/winspool.spec]
Added stubs for DeletePrinterDriver32A, DeleteMonitor32A
and DeletePort32A.
* [windows/mdi.c][include/windows.h][relay32/user32.spec]
Added stubs for CascadeWindows and TileWindows.
* [controls/toolbar.c][include/toolbar.h]
Fixed a few bugs and implemented new features.
* [misc/shellord.c][relay32/shell32.spec]
Added stubs for SHELL32_60, SHELL32_61 and SHELL32_184.
* [controls/comctl32undoc.c][relay32/comctl32.spec]
New file comctl32undoc.c. Contains undocumented functions
of COMCTL32.DLL. These functions are needed to run EXPLORER.EXE
IEXPLORE.EXE and TASKMAN.EXE.
* [controls/status.c]
Added text alignment.
Tue Jun 8 22:00:00 1998 Bertho Stultiens <bertho@akhphd.au.dk>
* [programs/*/Makefile.in]
Changed the rules to use wrc as resource compiler but
passing the source through gcc first for macro expansion.
* [programs/*/*.rc]
Added #include "windows.h" for the resource compiler in the
appropriate files.
* [tools/wrc/wrc.[ch]] [tools/wrc/writeres.c]
Added commandline option -A for autoregister code.
Corrected the underscore problem by checking the proper define
from config.h.
Sun Jun 7 22:09:29 1998 Pascal Cuoq <pcuoq@ens-lyon.fr>
* [ole/ole2nls.c] [memory/string.c]
Improved LCMapString32A, and changed CompareString32A,
lstrcmp, lstrcmpi to use it.
Sat Jun 6 19:00:50 1998 Martin Strmberg <ams@ludd.luth.se>
* [include/winnt.h]
Added typedefs for security and tokens.
Sat Jun 6 12:26:31 1998 Morten Welinder <terra@diku.dk>
* [objects/text.c]
Use debugstr_an in DrawText16.
* [loader/resource.c]
Use debugres_w in FindResourceEx32W. Avoid crashing during
debug when wm is NULL.
* [if1632/relay.c]
In RELAY_DebugCallTo16, send output to the right place and
avoid side effects in macro arguments.
Wed Jun 3 20:56:03 1998 Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
* [controls/scroll.c] [windows/nonclient.c]
Fix several off by one errors in scrollbar painting.
Tue Jun 2 23:58:59 1998 Insomnia (Stea Greene) <insomnia@core.binghamton.edu>
* [graphics/dsound.c]
Rewrote mixer code to handle panning and volume for 16->16, 16->8,
8->16, and 8->8 bit mixes. Conforms to DirectX's "logarithmic
hearing scale" as specified in M$VC docs. Still does not handle
mixing of different frequencies (I am still working on that).
Tested 16->16 extensively with StarCraft. Other mixing combinations
untested but should work fine. Still kind of a work in progress,
so be warned.
Tue Jun 2 03:31:33 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [tools/wrc/utils.c]
dup_basename: fix to strip directory.
Mon Jun 1 20:00:00 1998 Juergen Schmied <juergen.schmied@metronet.de>
* [include/windows.h] [objects/cursoricon.c] [relay32/user32.spec]
Added stubs LoadCursorFromFileW and LoadCursorFromFileA.
1998-06-14 17:24:15 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#define ANYSIZE_ARRAY 1
|
|
|
|
|
1999-03-10 19:03:53 +01:00
|
|
|
/* FIXME: Orphan. What does it point to? */
|
|
|
|
typedef PVOID PACCESS_TOKEN;
|
2004-08-14 01:55:43 +02:00
|
|
|
typedef PVOID PSECURITY_DESCRIPTOR;
|
|
|
|
typedef PVOID PSID;
|
1999-03-10 19:03:53 +01:00
|
|
|
|
2010-07-26 12:09:37 +02:00
|
|
|
typedef enum _TOKEN_ELEVATION_TYPE {
|
|
|
|
TokenElevationTypeDefault = 1,
|
|
|
|
TokenElevationTypeFull,
|
|
|
|
TokenElevationTypeLimited
|
|
|
|
} TOKEN_ELEVATION_TYPE, *PTOKEN_ELEVATION_TYPE;
|
|
|
|
|
Release 980614
Sun Jun 15 10:30:35 1998 Andreas Mohr <100.30936@germany.net>
* [files/dos_fs.c] [files/file.c] [if1632/wprocs.spec]
[misc/aspi.c]
Added support for scanners that need Adaptec's ASPI2DOS.
* [graphics/env.c] [misc/printerdrv.c] [graphics/win16drv/init.c]
[if1632/gdi.spec] [include/gdi.h]
Enhanced printer support (especially Win95):
Drv[GS]etPrinterData, [GS]etEnvironment; added AbortProc handling.
* [misc/tapi32.c] [relay32/tapi32.spec]
Added some stubs.
* [configure.in] [graphics/fontengine.c] [include/windows.h]
[misc/comm.c] [misc/w32skrnl.c] [misc/win32s16.c]
Made Wine compile on HP-UX (just for fun ;)
* [controls/menu.c] [include/windows.h]
Complete rewrite of EnableMenuItem32.
Free Agent 32 still doesn't work :(
* [misc/version.c] [if1632/kernel.spec] [include/winbase.h]
Implemented GetVersionEx16.
* [misc/network.c] [if1632/user.spec]
Fixed arguments of WNetGetPropertyText.
* [misc/version.c] [relay32/comctl32.spec] [relay32/oleaut32.spec]
Implemented COMCTL32_DllGetVersion, OaBuildVersion.
* [win32/file.c]
Fixed UNC handling of CreateFile32.
Sat Jun 13 22:35:12 1998 Douglas Ridgway <ridgway@winehq.com>
* [Makefile.in] [Make.rules.in]
Added pattern for CVS merge files to 'make clean'
* [ole/olecli.c] [windows/scroll.c] [windows/grahics.c]
Add some DC handle unlocking. (When hdc's are always unlocked,
they can be made moveable.)
* [documentation/wine.texinfo]
Started a Wine Design chapter with discussion of
graphics driver model.
Sat Jun 13 11:19:25 1998 David Luyer <luyer@ucs.uwa.edu.au>
* [misc/main.c] [relay32/relay386.c]
Added new option -debugmsg +relay=.... or -debugmsg -relay=...
Fri Jun 12 22:56:09 1998 Marcus Meissner <marcus@jet.franken.de>
* [relay32/snoop.c][relay32/builtin.c][loader/pe_image.c]
Added inter win32 dll snooping. Use -debugmsg +snoop.
Number of arguments and string references are autodetected.
Some small bugfixes in the PE loader.
* [misc/system.c]
Disabled SystemTimers. They do not work with the current
%fs handling in the 32->16 relaycode. (helps labview)
* [msdos/dpmi.c][msdos/int2f.c][files/drive.c]
Added a monoton linear increasing memory allocator for DPMI (required
for LabView, HAFAS, ...)
mscdex handling in emulated realmode interrupts (for mcicda.drv)
allocate logical drives only once. (helps Myst)
* [files/profile.c]
Handle ^Z as space. Found on CDROMS (helps Myst Installer).
* [multimedia/mmio.c]
mmio* partially updated to win32. No funny additions.
* [windows/driver.c]
Added win32 driver handling (will be used for win32 multimedia/
msvideo drivers).
* [win32/device.c]
Added device handling (K32OBJ_DEVICE_IOCTL). Implemented
VTDAPI.5 (used by win95' WINMM.timeGetTime())
Fri Jun 12 18:01:18 1998 Rein Klazes <rklazes@casema.net>
* [ole/compobj.c relay32/ole32.spec]
Add a stub for CoLockObjectExternal32.
* [objects/clipping.c]
Fix in IntersectClipRect(), when there is no initial clipping
region.
* [graphics/x11drv/graphics.c]
Corrected several "one-off" errors for the Ellipse, Rectangle
and RoundRectangle (especially small ones) draw routines.
Arc and friends still have to be done.
Fri Jun 12 06:23:19 1998 Matthew Becker <mbecker@glasscity.net>
* [misc/ntdll.c]
Fixed some of the parameter counts.
* [misc/registry.c]
General cleanup, documentation.
Standard keys are allowed to be 'closed' and succeed.
* [misc/shell.c]
Check for correct return values from Reg* functions.
* [win32/newfns.c]
Added stubs for OpenDesktopA, SetThreadDesktop, and
SetUserObjectInformationA.
Wed Jun 10 20:28:08 1998 James Juran <jrj120@psu.edu>
* [debugger/break.c]
Fixed bug introduced in 980503 that broke the -debug command
line option for PE executable files.
* [configure.in] [include/acconfig.h] [include/debugtools.h]
[documentation/debug-msgs]
Added 'configure' options to compile out debugging messages.
Use --disable-debug to disable all debugging messages, and
--disable-trace to just disable TRACE messages. This results
in a stripped executable that is 15-20% smaller. This option
is very much untested--don't expect it to work.
* [documentation/debug-msgs] [documentation/debugging]
Minor updates.
* [*/*.c]
Fixed some compile warnings. This also includes the
compile_warnings_trivial patch from WineHQ.
Tue Jun 10 22:00:18 1998 Eric Kohl <ekohl@abo.rhein-zeitung.de>
* [windows/sysmetrics.c][include/sysmetrics.h]
Fixed some Win95 values.
* [windows/nonclient.c][include/windows.h]
Fixed some Win95 drawing bugs.
Added extended window style flags (WS_EX_xxx).
* [misc/printdrv.c][relay32/winspool.spec]
Added stubs for DeletePrinterDriver32A, DeleteMonitor32A
and DeletePort32A.
* [windows/mdi.c][include/windows.h][relay32/user32.spec]
Added stubs for CascadeWindows and TileWindows.
* [controls/toolbar.c][include/toolbar.h]
Fixed a few bugs and implemented new features.
* [misc/shellord.c][relay32/shell32.spec]
Added stubs for SHELL32_60, SHELL32_61 and SHELL32_184.
* [controls/comctl32undoc.c][relay32/comctl32.spec]
New file comctl32undoc.c. Contains undocumented functions
of COMCTL32.DLL. These functions are needed to run EXPLORER.EXE
IEXPLORE.EXE and TASKMAN.EXE.
* [controls/status.c]
Added text alignment.
Tue Jun 8 22:00:00 1998 Bertho Stultiens <bertho@akhphd.au.dk>
* [programs/*/Makefile.in]
Changed the rules to use wrc as resource compiler but
passing the source through gcc first for macro expansion.
* [programs/*/*.rc]
Added #include "windows.h" for the resource compiler in the
appropriate files.
* [tools/wrc/wrc.[ch]] [tools/wrc/writeres.c]
Added commandline option -A for autoregister code.
Corrected the underscore problem by checking the proper define
from config.h.
Sun Jun 7 22:09:29 1998 Pascal Cuoq <pcuoq@ens-lyon.fr>
* [ole/ole2nls.c] [memory/string.c]
Improved LCMapString32A, and changed CompareString32A,
lstrcmp, lstrcmpi to use it.
Sat Jun 6 19:00:50 1998 Martin Strmberg <ams@ludd.luth.se>
* [include/winnt.h]
Added typedefs for security and tokens.
Sat Jun 6 12:26:31 1998 Morten Welinder <terra@diku.dk>
* [objects/text.c]
Use debugstr_an in DrawText16.
* [loader/resource.c]
Use debugres_w in FindResourceEx32W. Avoid crashing during
debug when wm is NULL.
* [if1632/relay.c]
In RELAY_DebugCallTo16, send output to the right place and
avoid side effects in macro arguments.
Wed Jun 3 20:56:03 1998 Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
* [controls/scroll.c] [windows/nonclient.c]
Fix several off by one errors in scrollbar painting.
Tue Jun 2 23:58:59 1998 Insomnia (Stea Greene) <insomnia@core.binghamton.edu>
* [graphics/dsound.c]
Rewrote mixer code to handle panning and volume for 16->16, 16->8,
8->16, and 8->8 bit mixes. Conforms to DirectX's "logarithmic
hearing scale" as specified in M$VC docs. Still does not handle
mixing of different frequencies (I am still working on that).
Tested 16->16 extensively with StarCraft. Other mixing combinations
untested but should work fine. Still kind of a work in progress,
so be warned.
Tue Jun 2 03:31:33 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [tools/wrc/utils.c]
dup_basename: fix to strip directory.
Mon Jun 1 20:00:00 1998 Juergen Schmied <juergen.schmied@metronet.de>
* [include/windows.h] [objects/cursoricon.c] [relay32/user32.spec]
Added stubs LoadCursorFromFileW and LoadCursorFromFileA.
1998-06-14 17:24:15 +02:00
|
|
|
/*
|
|
|
|
* TOKEN_INFORMATION_CLASS
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef enum _TOKEN_INFORMATION_CLASS {
|
2002-06-01 01:06:46 +02:00
|
|
|
TokenUser = 1,
|
|
|
|
TokenGroups,
|
|
|
|
TokenPrivileges,
|
|
|
|
TokenOwner,
|
|
|
|
TokenPrimaryGroup,
|
|
|
|
TokenDefaultDacl,
|
|
|
|
TokenSource,
|
|
|
|
TokenType,
|
|
|
|
TokenImpersonationLevel,
|
2002-08-26 23:39:17 +02:00
|
|
|
TokenStatistics,
|
|
|
|
TokenRestrictedSids,
|
|
|
|
TokenSessionId,
|
|
|
|
TokenGroupsAndPrivileges,
|
|
|
|
TokenSessionReference,
|
2009-03-07 09:37:34 +01:00
|
|
|
TokenSandBoxInert,
|
|
|
|
TokenAuditPolicy,
|
|
|
|
TokenOrigin,
|
|
|
|
TokenElevationType,
|
|
|
|
TokenLinkedToken,
|
|
|
|
TokenElevation,
|
|
|
|
TokenHasRestrictions,
|
|
|
|
TokenAccessInformation,
|
|
|
|
TokenVirtualizationAllowed,
|
|
|
|
TokenVirtualizationEnabled,
|
|
|
|
TokenIntegrityLevel,
|
|
|
|
TokenUIAccess,
|
|
|
|
TokenMandatoryPolicy,
|
|
|
|
TokenLogonSid,
|
2014-05-31 02:08:45 +02:00
|
|
|
TokenIsAppContainer,
|
|
|
|
TokenCapabilities,
|
|
|
|
TokenAppContainerSid,
|
|
|
|
TokenAppContainerNumber,
|
|
|
|
TokenUserClaimAttributes,
|
|
|
|
TokenDeviceClaimAttributes,
|
|
|
|
TokenRestrictedUserClaimAttributes,
|
|
|
|
TokenRestrictedDeviceClaimAttributes,
|
|
|
|
TokenDeviceGroups,
|
|
|
|
TokenRestrictedDeviceGroups,
|
|
|
|
TokenSecurityAttributes,
|
|
|
|
TokenIsRestricted,
|
|
|
|
TokenProcessTrustLevel,
|
2009-03-07 09:37:34 +01:00
|
|
|
MaxTokenInfoClass
|
2002-06-01 01:06:46 +02:00
|
|
|
} TOKEN_INFORMATION_CLASS;
|
Release 980614
Sun Jun 15 10:30:35 1998 Andreas Mohr <100.30936@germany.net>
* [files/dos_fs.c] [files/file.c] [if1632/wprocs.spec]
[misc/aspi.c]
Added support for scanners that need Adaptec's ASPI2DOS.
* [graphics/env.c] [misc/printerdrv.c] [graphics/win16drv/init.c]
[if1632/gdi.spec] [include/gdi.h]
Enhanced printer support (especially Win95):
Drv[GS]etPrinterData, [GS]etEnvironment; added AbortProc handling.
* [misc/tapi32.c] [relay32/tapi32.spec]
Added some stubs.
* [configure.in] [graphics/fontengine.c] [include/windows.h]
[misc/comm.c] [misc/w32skrnl.c] [misc/win32s16.c]
Made Wine compile on HP-UX (just for fun ;)
* [controls/menu.c] [include/windows.h]
Complete rewrite of EnableMenuItem32.
Free Agent 32 still doesn't work :(
* [misc/version.c] [if1632/kernel.spec] [include/winbase.h]
Implemented GetVersionEx16.
* [misc/network.c] [if1632/user.spec]
Fixed arguments of WNetGetPropertyText.
* [misc/version.c] [relay32/comctl32.spec] [relay32/oleaut32.spec]
Implemented COMCTL32_DllGetVersion, OaBuildVersion.
* [win32/file.c]
Fixed UNC handling of CreateFile32.
Sat Jun 13 22:35:12 1998 Douglas Ridgway <ridgway@winehq.com>
* [Makefile.in] [Make.rules.in]
Added pattern for CVS merge files to 'make clean'
* [ole/olecli.c] [windows/scroll.c] [windows/grahics.c]
Add some DC handle unlocking. (When hdc's are always unlocked,
they can be made moveable.)
* [documentation/wine.texinfo]
Started a Wine Design chapter with discussion of
graphics driver model.
Sat Jun 13 11:19:25 1998 David Luyer <luyer@ucs.uwa.edu.au>
* [misc/main.c] [relay32/relay386.c]
Added new option -debugmsg +relay=.... or -debugmsg -relay=...
Fri Jun 12 22:56:09 1998 Marcus Meissner <marcus@jet.franken.de>
* [relay32/snoop.c][relay32/builtin.c][loader/pe_image.c]
Added inter win32 dll snooping. Use -debugmsg +snoop.
Number of arguments and string references are autodetected.
Some small bugfixes in the PE loader.
* [misc/system.c]
Disabled SystemTimers. They do not work with the current
%fs handling in the 32->16 relaycode. (helps labview)
* [msdos/dpmi.c][msdos/int2f.c][files/drive.c]
Added a monoton linear increasing memory allocator for DPMI (required
for LabView, HAFAS, ...)
mscdex handling in emulated realmode interrupts (for mcicda.drv)
allocate logical drives only once. (helps Myst)
* [files/profile.c]
Handle ^Z as space. Found on CDROMS (helps Myst Installer).
* [multimedia/mmio.c]
mmio* partially updated to win32. No funny additions.
* [windows/driver.c]
Added win32 driver handling (will be used for win32 multimedia/
msvideo drivers).
* [win32/device.c]
Added device handling (K32OBJ_DEVICE_IOCTL). Implemented
VTDAPI.5 (used by win95' WINMM.timeGetTime())
Fri Jun 12 18:01:18 1998 Rein Klazes <rklazes@casema.net>
* [ole/compobj.c relay32/ole32.spec]
Add a stub for CoLockObjectExternal32.
* [objects/clipping.c]
Fix in IntersectClipRect(), when there is no initial clipping
region.
* [graphics/x11drv/graphics.c]
Corrected several "one-off" errors for the Ellipse, Rectangle
and RoundRectangle (especially small ones) draw routines.
Arc and friends still have to be done.
Fri Jun 12 06:23:19 1998 Matthew Becker <mbecker@glasscity.net>
* [misc/ntdll.c]
Fixed some of the parameter counts.
* [misc/registry.c]
General cleanup, documentation.
Standard keys are allowed to be 'closed' and succeed.
* [misc/shell.c]
Check for correct return values from Reg* functions.
* [win32/newfns.c]
Added stubs for OpenDesktopA, SetThreadDesktop, and
SetUserObjectInformationA.
Wed Jun 10 20:28:08 1998 James Juran <jrj120@psu.edu>
* [debugger/break.c]
Fixed bug introduced in 980503 that broke the -debug command
line option for PE executable files.
* [configure.in] [include/acconfig.h] [include/debugtools.h]
[documentation/debug-msgs]
Added 'configure' options to compile out debugging messages.
Use --disable-debug to disable all debugging messages, and
--disable-trace to just disable TRACE messages. This results
in a stripped executable that is 15-20% smaller. This option
is very much untested--don't expect it to work.
* [documentation/debug-msgs] [documentation/debugging]
Minor updates.
* [*/*.c]
Fixed some compile warnings. This also includes the
compile_warnings_trivial patch from WineHQ.
Tue Jun 10 22:00:18 1998 Eric Kohl <ekohl@abo.rhein-zeitung.de>
* [windows/sysmetrics.c][include/sysmetrics.h]
Fixed some Win95 values.
* [windows/nonclient.c][include/windows.h]
Fixed some Win95 drawing bugs.
Added extended window style flags (WS_EX_xxx).
* [misc/printdrv.c][relay32/winspool.spec]
Added stubs for DeletePrinterDriver32A, DeleteMonitor32A
and DeletePort32A.
* [windows/mdi.c][include/windows.h][relay32/user32.spec]
Added stubs for CascadeWindows and TileWindows.
* [controls/toolbar.c][include/toolbar.h]
Fixed a few bugs and implemented new features.
* [misc/shellord.c][relay32/shell32.spec]
Added stubs for SHELL32_60, SHELL32_61 and SHELL32_184.
* [controls/comctl32undoc.c][relay32/comctl32.spec]
New file comctl32undoc.c. Contains undocumented functions
of COMCTL32.DLL. These functions are needed to run EXPLORER.EXE
IEXPLORE.EXE and TASKMAN.EXE.
* [controls/status.c]
Added text alignment.
Tue Jun 8 22:00:00 1998 Bertho Stultiens <bertho@akhphd.au.dk>
* [programs/*/Makefile.in]
Changed the rules to use wrc as resource compiler but
passing the source through gcc first for macro expansion.
* [programs/*/*.rc]
Added #include "windows.h" for the resource compiler in the
appropriate files.
* [tools/wrc/wrc.[ch]] [tools/wrc/writeres.c]
Added commandline option -A for autoregister code.
Corrected the underscore problem by checking the proper define
from config.h.
Sun Jun 7 22:09:29 1998 Pascal Cuoq <pcuoq@ens-lyon.fr>
* [ole/ole2nls.c] [memory/string.c]
Improved LCMapString32A, and changed CompareString32A,
lstrcmp, lstrcmpi to use it.
Sat Jun 6 19:00:50 1998 Martin Strmberg <ams@ludd.luth.se>
* [include/winnt.h]
Added typedefs for security and tokens.
Sat Jun 6 12:26:31 1998 Morten Welinder <terra@diku.dk>
* [objects/text.c]
Use debugstr_an in DrawText16.
* [loader/resource.c]
Use debugres_w in FindResourceEx32W. Avoid crashing during
debug when wm is NULL.
* [if1632/relay.c]
In RELAY_DebugCallTo16, send output to the right place and
avoid side effects in macro arguments.
Wed Jun 3 20:56:03 1998 Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
* [controls/scroll.c] [windows/nonclient.c]
Fix several off by one errors in scrollbar painting.
Tue Jun 2 23:58:59 1998 Insomnia (Stea Greene) <insomnia@core.binghamton.edu>
* [graphics/dsound.c]
Rewrote mixer code to handle panning and volume for 16->16, 16->8,
8->16, and 8->8 bit mixes. Conforms to DirectX's "logarithmic
hearing scale" as specified in M$VC docs. Still does not handle
mixing of different frequencies (I am still working on that).
Tested 16->16 extensively with StarCraft. Other mixing combinations
untested but should work fine. Still kind of a work in progress,
so be warned.
Tue Jun 2 03:31:33 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [tools/wrc/utils.c]
dup_basename: fix to strip directory.
Mon Jun 1 20:00:00 1998 Juergen Schmied <juergen.schmied@metronet.de>
* [include/windows.h] [objects/cursoricon.c] [relay32/user32.spec]
Added stubs LoadCursorFromFileW and LoadCursorFromFileA.
1998-06-14 17:24:15 +02:00
|
|
|
|
2001-06-23 01:43:09 +02:00
|
|
|
#define TOKEN_TOKEN_ADJUST_DEFAULT 0x0080
|
|
|
|
#define TOKEN_ADJUST_GROUPS 0x0040
|
|
|
|
#define TOKEN_ADJUST_PRIVILEGES 0x0020
|
|
|
|
#define TOKEN_ADJUST_SESSIONID 0x0100
|
|
|
|
#define TOKEN_ASSIGN_PRIMARY 0x0001
|
|
|
|
#define TOKEN_DUPLICATE 0x0002
|
|
|
|
#define TOKEN_EXECUTE STANDARD_RIGHTS_EXECUTE
|
|
|
|
#define TOKEN_IMPERSONATE 0x0004
|
|
|
|
#define TOKEN_QUERY 0x0008
|
|
|
|
#define TOKEN_QUERY_SOURCE 0x0010
|
|
|
|
#define TOKEN_ADJUST_DEFAULT 0x0080
|
|
|
|
#define TOKEN_READ (STANDARD_RIGHTS_READ|TOKEN_QUERY)
|
|
|
|
#define TOKEN_WRITE (STANDARD_RIGHTS_WRITE | \
|
|
|
|
TOKEN_ADJUST_PRIVILEGES | \
|
|
|
|
TOKEN_ADJUST_GROUPS | \
|
|
|
|
TOKEN_ADJUST_DEFAULT )
|
|
|
|
#define TOKEN_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED | \
|
|
|
|
TOKEN_ASSIGN_PRIMARY | \
|
|
|
|
TOKEN_DUPLICATE | \
|
|
|
|
TOKEN_IMPERSONATE | \
|
|
|
|
TOKEN_QUERY | \
|
|
|
|
TOKEN_QUERY_SOURCE | \
|
|
|
|
TOKEN_ADJUST_PRIVILEGES | \
|
|
|
|
TOKEN_ADJUST_GROUPS | \
|
|
|
|
TOKEN_ADJUST_SESSIONID | \
|
|
|
|
TOKEN_ADJUST_DEFAULT )
|
|
|
|
|
1999-02-17 18:45:54 +01:00
|
|
|
#ifndef _SECURITY_DEFINED
|
|
|
|
#define _SECURITY_DEFINED
|
|
|
|
|
1999-02-19 17:29:05 +01:00
|
|
|
|
1999-07-04 13:01:21 +02:00
|
|
|
typedef DWORD ACCESS_MASK, *PACCESS_MASK;
|
|
|
|
|
|
|
|
typedef struct _GENERIC_MAPPING {
|
|
|
|
ACCESS_MASK GenericRead;
|
|
|
|
ACCESS_MASK GenericWrite;
|
|
|
|
ACCESS_MASK GenericExecute;
|
|
|
|
ACCESS_MASK GenericAll;
|
|
|
|
} GENERIC_MAPPING, *PGENERIC_MAPPING;
|
|
|
|
|
|
|
|
#ifndef SID_IDENTIFIER_AUTHORITY_DEFINED
|
|
|
|
#define SID_IDENTIFIER_AUTHORITY_DEFINED
|
1999-02-17 18:45:54 +01:00
|
|
|
typedef struct {
|
|
|
|
BYTE Value[6];
|
2002-11-04 23:43:24 +01:00
|
|
|
} SID_IDENTIFIER_AUTHORITY, *PSID_IDENTIFIER_AUTHORITY;
|
1999-07-04 13:01:21 +02:00
|
|
|
#endif /* !defined(SID_IDENTIFIER_AUTHORITY_DEFINED) */
|
1999-02-17 18:45:54 +01:00
|
|
|
|
1999-07-04 13:01:21 +02:00
|
|
|
#ifndef SID_DEFINED
|
|
|
|
#define SID_DEFINED
|
1999-02-17 18:45:54 +01:00
|
|
|
typedef struct _SID {
|
|
|
|
BYTE Revision;
|
|
|
|
BYTE SubAuthorityCount;
|
|
|
|
SID_IDENTIFIER_AUTHORITY IdentifierAuthority;
|
|
|
|
DWORD SubAuthority[1];
|
2004-08-14 01:55:43 +02:00
|
|
|
} SID,*PISID;
|
1999-07-04 13:01:21 +02:00
|
|
|
#endif /* !defined(SID_DEFINED) */
|
1999-02-17 18:45:54 +01:00
|
|
|
|
1999-03-09 18:46:10 +01:00
|
|
|
#define SID_REVISION (1) /* Current revision */
|
|
|
|
#define SID_MAX_SUB_AUTHORITIES (15) /* current max subauths */
|
|
|
|
#define SID_RECOMMENDED_SUB_AUTHORITIES (1) /* recommended subauths */
|
|
|
|
|
2006-07-14 20:52:16 +02:00
|
|
|
#define SECURITY_MAX_SID_SIZE (sizeof(SID) - sizeof(DWORD) + (SID_MAX_SUB_AUTHORITIES * sizeof(DWORD)))
|
1999-03-09 18:46:10 +01:00
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
/*
|
|
|
|
* ACL
|
1999-02-17 18:45:54 +01:00
|
|
|
*/
|
|
|
|
|
2000-01-12 05:59:42 +01:00
|
|
|
#define ACL_REVISION1 1
|
|
|
|
#define ACL_REVISION2 2
|
|
|
|
#define ACL_REVISION3 3
|
|
|
|
#define ACL_REVISION4 4
|
|
|
|
|
|
|
|
#define MIN_ACL_REVISION ACL_REVISION2
|
|
|
|
#define MAX_ACL_REVISION ACL_REVISION4
|
|
|
|
|
2007-10-23 16:19:07 +02:00
|
|
|
#define ACL_REVISION 2
|
|
|
|
|
1999-02-17 18:45:54 +01:00
|
|
|
typedef struct _ACL {
|
|
|
|
BYTE AclRevision;
|
|
|
|
BYTE Sbz1;
|
|
|
|
WORD AclSize;
|
|
|
|
WORD AceCount;
|
|
|
|
WORD Sbz2;
|
|
|
|
} ACL, *PACL;
|
|
|
|
|
2003-06-16 21:44:06 +02:00
|
|
|
typedef enum _ACL_INFORMATION_CLASS
|
|
|
|
{
|
|
|
|
AclRevisionInformation = 1,
|
|
|
|
AclSizeInformation
|
|
|
|
} ACL_INFORMATION_CLASS;
|
|
|
|
|
2003-11-11 23:03:24 +01:00
|
|
|
typedef struct _ACL_REVISION_INFORMATION
|
|
|
|
{
|
|
|
|
DWORD AclRevision;
|
|
|
|
} ACL_REVISION_INFORMATION, *PACL_REVISION_INFORMATION;
|
|
|
|
|
|
|
|
typedef struct _ACL_SIZE_INFORMATION
|
|
|
|
{
|
|
|
|
DWORD AceCount;
|
|
|
|
DWORD AclBytesInUse;
|
|
|
|
DWORD AclBytesFree;
|
|
|
|
} ACL_SIZE_INFORMATION, *PACL_SIZE_INFORMATION;
|
|
|
|
|
1999-02-19 17:29:05 +01:00
|
|
|
/* SECURITY_DESCRIPTOR */
|
|
|
|
#define SECURITY_DESCRIPTOR_REVISION 1
|
|
|
|
#define SECURITY_DESCRIPTOR_REVISION1 1
|
|
|
|
|
|
|
|
|
2002-12-19 22:12:35 +01:00
|
|
|
/*
|
|
|
|
* Privilege Names
|
|
|
|
*/
|
2013-10-21 10:01:50 +02:00
|
|
|
#ifdef UNICODE
|
|
|
|
#if defined(_MSC_VER)
|
|
|
|
#define SE_CREATE_TOKEN_NAME L"SeCreateTokenPrivilege"
|
|
|
|
#define SE_ASSIGNPRIMARYTOKEN_NAME L"SeAssignPrimaryTokenPrivilege"
|
|
|
|
#define SE_LOCK_MEMORY_NAME L"SeLockMemoryPrivilege"
|
|
|
|
#define SE_INCREASE_QUOTA_NAME L"SeIncreaseQuotaPrivilege"
|
|
|
|
#define SE_UNSOLICITED_INPUT_NAME L"SeUnsolicitedInputPrivilege"
|
|
|
|
#define SE_MACHINE_ACCOUNT_NAME L"SeMachineAccountPrivilege"
|
|
|
|
#define SE_TCB_NAME L"SeTcbPrivilege"
|
|
|
|
#define SE_SECURITY_NAME L"SeSecurityPrivilege"
|
|
|
|
#define SE_TAKE_OWNERSHIP_NAME L"SeTakeOwnershipPrivilege"
|
|
|
|
#define SE_LOAD_DRIVER_NAME L"SeLoadDriverPrivilege"
|
|
|
|
#define SE_SYSTEM_PROFILE_NAME L"SeSystemProfilePrivilege"
|
|
|
|
#define SE_SYSTEMTIME_NAME L"SeSystemtimePrivilege"
|
|
|
|
#define SE_PROF_SINGLE_PROCESS_NAME L"SeProfileSingleProcessPrivilege"
|
|
|
|
#define SE_INC_BASE_PRIORITY_NAME L"SeIncreaseBasePriorityPrivilege"
|
|
|
|
#define SE_CREATE_PAGEFILE_NAME L"SeCreatePagefilePrivilege"
|
|
|
|
#define SE_CREATE_PERMANENT_NAME L"SeCreatePermanentPrivilege"
|
|
|
|
#define SE_BACKUP_NAME L"SeBackupPrivilege"
|
|
|
|
#define SE_RESTORE_NAME L"SeRestorePrivilege"
|
|
|
|
#define SE_SHUTDOWN_NAME L"SeShutdownPrivilege"
|
|
|
|
#define SE_DEBUG_NAME L"SeDebugPrivilege"
|
|
|
|
#define SE_AUDIT_NAME L"SeAuditPrivilege"
|
|
|
|
#define SE_SYSTEM_ENVIRONMENT_NAME L"SeSystemEnvironmentPrivilege"
|
|
|
|
#define SE_CHANGE_NOTIFY_NAME L"SeChangeNotifyPrivilege"
|
|
|
|
#define SE_REMOTE_SHUTDOWN_NAME L"SeRemoteShutdownPrivilege"
|
|
|
|
#define SE_UNDOCK_NAME L"SeUndockPrivilege"
|
|
|
|
#define SE_ENABLE_DELEGATION_NAME L"SeEnableDelegationPrivilege"
|
|
|
|
#define SE_MANAGE_VOLUME_NAME L"SeManageVolumePrivilege"
|
|
|
|
#define SE_IMPERSONATE_NAME L"SeImpersonatePrivilege"
|
|
|
|
#define SE_CREATE_GLOBAL_NAME L"SeCreateGlobalPrivilege"
|
|
|
|
#elif defined(__GNUC__)
|
|
|
|
#define SE_CREATE_TOKEN_NAME (const WCHAR []){ 'S','e','C','r','e','a','t','e','T','o','k','e','n','P','r','i','v','i','l','e','g','e',0 }
|
|
|
|
#define SE_ASSIGNPRIMARYTOKEN_NAME (const WCHAR []){ 'S','e','A','s','s','i','g','n','P','r','i','m','a','r','y','T','o','k','e','n','P','r','i','v','i','l','e','g','e',0 }
|
|
|
|
#define SE_LOCK_MEMORY_NAME (const WCHAR []){ 'S','e','L','o','c','k','M','e','m','o','r','y','P','r','i','v','i','l','e','g','e',0 }
|
|
|
|
#define SE_INCREASE_QUOTA_NAME (const WCHAR []){ 'S','e','I','n','c','r','e','a','s','e','Q','u','o','t','a','P','r','i','v','i','l','e','g','e',0 }
|
|
|
|
#define SE_UNSOLICITED_INPUT_NAME (const WCHAR []){ 'S','e','U','n','s','o','l','i','c','i','t','e','d','I','n','p','u','t','P','r','i','v','i','l','e','g','e',0 }
|
|
|
|
#define SE_MACHINE_ACCOUNT_NAME (const WCHAR []){ 'S','e','M','a','c','h','i','n','e','A','c','c','o','u','n','t','P','r','i','v','i','l','e','g','e',0 }
|
|
|
|
#define SE_TCB_NAME (const WCHAR []){ 'S','e','T','c','b','P','r','i','v','i','l','e','g','e',0 }
|
|
|
|
#define SE_SECURITY_NAME (const WCHAR []){ 'S','e','S','e','c','u','r','i','t','y','P','r','i','v','i','l','e','g','e',0 }
|
|
|
|
#define SE_TAKE_OWNERSHIP_NAME (const WCHAR []){ 'S','e','T','a','k','e','O','w','n','e','r','s','h','i','p','P','r','i','v','i','l','e','g','e',0 }
|
|
|
|
#define SE_LOAD_DRIVER_NAME (const WCHAR []){ 'S','e','L','o','a','d','D','r','i','v','e','r','P','r','i','v','i','l','e','g','e',0 }
|
|
|
|
#define SE_SYSTEM_PROFILE_NAME (const WCHAR []){ 'S','e','S','y','s','t','e','m','P','r','o','f','i','l','e','P','r','i','v','i','l','e','g','e',0 }
|
|
|
|
#define SE_SYSTEMTIME_NAME (const WCHAR []){ 'S','e','S','y','s','t','e','m','t','i','m','e','P','r','i','v','i','l','e','g','e',0 }
|
|
|
|
#define SE_PROF_SINGLE_PROCESS_NAME (const WCHAR []){ 'S','e','P','r','o','f','i','l','e','S','i','n','g','l','e','P','r','o','c','e','s','s','P','r','i','v','i','l','e','g','e',0 }
|
|
|
|
#define SE_INC_BASE_PRIORITY_NAME (const WCHAR []){ 'S','e','I','n','c','r','e','a','s','e','B','a','s','e','P','r','i','o','r','i','t','y','P','r','i','v','i','l','e','g','e',0 }
|
|
|
|
#define SE_CREATE_PAGEFILE_NAME (const WCHAR []){ 'S','e','C','r','e','a','t','e','P','a','g','e','f','i','l','e','P','r','i','v','i','l','e','g','e',0 }
|
|
|
|
#define SE_CREATE_PERMANENT_NAME (const WCHAR []){ 'S','e','C','r','e','a','t','e','P','e','r','m','a','n','e','n','t','P','r','i','v','i','l','e','g','e',0 }
|
|
|
|
#define SE_BACKUP_NAME (const WCHAR []){ 'S','e','B','a','c','k','u','p','P','r','i','v','i','l','e','g','e',0 }
|
|
|
|
#define SE_RESTORE_NAME (const WCHAR []){ 'S','e','R','e','s','t','o','r','e','P','r','i','v','i','l','e','g','e',0 }
|
|
|
|
#define SE_SHUTDOWN_NAME (const WCHAR []){ 'S','e','S','h','u','t','d','o','w','n','P','r','i','v','i','l','e','g','e',0 }
|
|
|
|
#define SE_DEBUG_NAME (const WCHAR []){ 'S','e','D','e','b','u','g','P','r','i','v','i','l','e','g','e',0 }
|
|
|
|
#define SE_AUDIT_NAME (const WCHAR []){ 'S','e','A','u','d','i','t','P','r','i','v','i','l','e','g','e',0 }
|
|
|
|
#define SE_SYSTEM_ENVIRONMENT_NAME (const WCHAR []){ 'S','e','S','y','s','t','e','m','E','n','v','i','r','o','n','m','e','n','t','P','r','i','v','i','l','e','g','e',0 }
|
|
|
|
#define SE_CHANGE_NOTIFY_NAME (const WCHAR []){ 'S','e','C','h','a','n','g','e','N','o','t','i','f','y','P','r','i','v','i','l','e','g','e',0 }
|
|
|
|
#define SE_REMOTE_SHUTDOWN_NAME (const WCHAR []){ 'S','e','R','e','m','o','t','e','S','h','u','t','d','o','w','n','P','r','i','v','i','l','e','g','e',0 }
|
|
|
|
#define SE_UNDOCK_NAME (const WCHAR []){ 'S','e','U','n','d','o','c','k','P','r','i','v','i','l','e','g','e',0 }
|
|
|
|
#define SE_ENABLE_DELEGATION_NAME (const WCHAR []){ 'S','e','E','n','a','b','l','e','D','e','l','e','g','a','t','i','o','n','P','r','i','v','i','l','e','g','e',0 }
|
|
|
|
#define SE_MANAGE_VOLUME_NAME (const WCHAR []){ 'S','e','M','a','n','a','g','e','V','o','l','u','m','e','P','r','i','v','i','l','e','g','e',0 }
|
|
|
|
#define SE_IMPERSONATE_NAME (const WCHAR []){ 'S','e','I','m','p','e','r','s','o','n','a','t','e','P','r','i','v','i','l','e','g','e',0 }
|
|
|
|
#define SE_CREATE_GLOBAL_NAME (const WCHAR []){ 'S','e','C','r','e','a','t','e','G','l','o','b','a','l','P','r','i','v','i','l','e','g','e',0 }
|
|
|
|
#else /* _MSC_VER/__GNUC__ */
|
|
|
|
static const WCHAR SE_CREATE_TOKEN_NAME[] = { 'S','e','C','r','e','a','t','e','T','o','k','e','n','P','r','i','v','i','l','e','g','e',0 };
|
|
|
|
static const WCHAR SE_ASSIGNPRIMARYTOKEN_NAME[] = { 'S','e','A','s','s','i','g','n','P','r','i','m','a','r','y','T','o','k','e','n','P','r','i','v','i','l','e','g','e',0 };
|
|
|
|
static const WCHAR SE_LOCK_MEMORY_NAME[] = { 'S','e','L','o','c','k','M','e','m','o','r','y','P','r','i','v','i','l','e','g','e',0 };
|
|
|
|
static const WCHAR SE_INCREASE_QUOTA_NAME[] = { 'S','e','I','n','c','r','e','a','s','e','Q','u','o','t','a','P','r','i','v','i','l','e','g','e',0 };
|
|
|
|
static const WCHAR SE_UNSOLICITED_INPUT_NAME[] = { 'S','e','U','n','s','o','l','i','c','i','t','e','d','I','n','p','u','t','P','r','i','v','i','l','e','g','e',0 };
|
|
|
|
static const WCHAR SE_MACHINE_ACCOUNT_NAME[] = { 'S','e','M','a','c','h','i','n','e','A','c','c','o','u','n','t','P','r','i','v','i','l','e','g','e',0 };
|
|
|
|
static const WCHAR SE_TCB_NAME[] = { 'S','e','T','c','b','P','r','i','v','i','l','e','g','e',0 };
|
|
|
|
static const WCHAR SE_SECURITY_NAME[] = { 'S','e','S','e','c','u','r','i','t','y','P','r','i','v','i','l','e','g','e',0 };
|
|
|
|
static const WCHAR SE_TAKE_OWNERSHIP_NAME[] = { 'S','e','T','a','k','e','O','w','n','e','r','s','h','i','p','P','r','i','v','i','l','e','g','e',0 };
|
|
|
|
static const WCHAR SE_LOAD_DRIVER_NAME[] = { 'S','e','L','o','a','d','D','r','i','v','e','r','P','r','i','v','i','l','e','g','e',0 };
|
|
|
|
static const WCHAR SE_SYSTEM_PROFILE_NAME[] = { 'S','e','S','y','s','t','e','m','P','r','o','f','i','l','e','P','r','i','v','i','l','e','g','e',0 };
|
|
|
|
static const WCHAR SE_SYSTEMTIME_NAME[] = { 'S','e','S','y','s','t','e','m','t','i','m','e','P','r','i','v','i','l','e','g','e',0 };
|
|
|
|
static const WCHAR SE_PROF_SINGLE_PROCESS_NAME[] = { 'S','e','P','r','o','f','i','l','e','S','i','n','g','l','e','P','r','o','c','e','s','s','P','r','i','v','i','l','e','g','e',0 };
|
|
|
|
static const WCHAR SE_INC_BASE_PRIORITY_NAME[] = { 'S','e','I','n','c','r','e','a','s','e','B','a','s','e','P','r','i','o','r','i','t','y','P','r','i','v','i','l','e','g','e',0 };
|
|
|
|
static const WCHAR SE_CREATE_PAGEFILE_NAME[] = { 'S','e','C','r','e','a','t','e','P','a','g','e','f','i','l','e','P','r','i','v','i','l','e','g','e',0 };
|
|
|
|
static const WCHAR SE_CREATE_PERMANENT_NAME[] = { 'S','e','C','r','e','a','t','e','P','e','r','m','a','n','e','n','t','P','r','i','v','i','l','e','g','e',0 };
|
|
|
|
static const WCHAR SE_BACKUP_NAME[] = { 'S','e','B','a','c','k','u','p','P','r','i','v','i','l','e','g','e',0 };
|
|
|
|
static const WCHAR SE_RESTORE_NAME[] = { 'S','e','R','e','s','t','o','r','e','P','r','i','v','i','l','e','g','e',0 };
|
|
|
|
static const WCHAR SE_SHUTDOWN_NAME[] = { 'S','e','S','h','u','t','d','o','w','n','P','r','i','v','i','l','e','g','e',0 };
|
|
|
|
static const WCHAR SE_DEBUG_NAME[] = { 'S','e','D','e','b','u','g','P','r','i','v','i','l','e','g','e',0 };
|
|
|
|
static const WCHAR SE_AUDIT_NAME[] = { 'S','e','A','u','d','i','t','P','r','i','v','i','l','e','g','e',0 };
|
|
|
|
static const WCHAR SE_SYSTEM_ENVIRONMENT_NAME[] = { 'S','e','S','y','s','t','e','m','E','n','v','i','r','o','n','m','e','n','t','P','r','i','v','i','l','e','g','e',0 };
|
|
|
|
static const WCHAR SE_CHANGE_NOTIFY_NAME[] = { 'S','e','C','h','a','n','g','e','N','o','t','i','f','y','P','r','i','v','i','l','e','g','e',0 };
|
|
|
|
static const WCHAR SE_REMOTE_SHUTDOWN_NAME[] = { 'S','e','R','e','m','o','t','e','S','h','u','t','d','o','w','n','P','r','i','v','i','l','e','g','e',0 };
|
|
|
|
static const WCHAR SE_UNDOCK_NAME[] = { 'S','e','U','n','d','o','c','k','P','r','i','v','i','l','e','g','e',0 };
|
|
|
|
static const WCHAR SE_ENABLE_DELEGATION_NAME[] = { 'S','e','E','n','a','b','l','e','D','e','l','e','g','a','t','i','o','n','P','r','i','v','i','l','e','g','e',0 };
|
|
|
|
static const WCHAR SE_MANAGE_VOLUME_NAME[] = { 'S','e','M','a','n','a','g','e','V','o','l','u','m','e','P','r','i','v','i','l','e','g','e',0 };
|
|
|
|
static const WCHAR SE_IMPERSONATE_NAME[] = { 'S','e','I','m','p','e','r','s','o','n','a','t','e','P','r','i','v','i','l','e','g','e',0 };
|
|
|
|
static const WCHAR SE_CREATE_GLOBAL_NAME[] = { 'S','e','C','r','e','a','t','e','G','l','o','b','a','l','P','r','i','v','i','l','e','g','e',0 };
|
|
|
|
#endif
|
|
|
|
#else /* UNICODE */
|
|
|
|
#define SE_CREATE_TOKEN_NAME "SeCreateTokenPrivilege"
|
|
|
|
#define SE_ASSIGNPRIMARYTOKEN_NAME "SeAssignPrimaryTokenPrivilege"
|
|
|
|
#define SE_LOCK_MEMORY_NAME "SeLockMemoryPrivilege"
|
|
|
|
#define SE_INCREASE_QUOTA_NAME "SeIncreaseQuotaPrivilege"
|
|
|
|
#define SE_UNSOLICITED_INPUT_NAME "SeUnsolicitedInputPrivilege"
|
|
|
|
#define SE_MACHINE_ACCOUNT_NAME "SeMachineAccountPrivilege"
|
|
|
|
#define SE_TCB_NAME "SeTcbPrivilege"
|
|
|
|
#define SE_SECURITY_NAME "SeSecurityPrivilege"
|
|
|
|
#define SE_TAKE_OWNERSHIP_NAME "SeTakeOwnershipPrivilege"
|
|
|
|
#define SE_LOAD_DRIVER_NAME "SeLoadDriverPrivilege"
|
|
|
|
#define SE_SYSTEM_PROFILE_NAME "SeSystemProfilePrivilege"
|
|
|
|
#define SE_SYSTEMTIME_NAME "SeSystemtimePrivilege"
|
|
|
|
#define SE_PROF_SINGLE_PROCESS_NAME "SeProfileSingleProcessPrivilege"
|
|
|
|
#define SE_INC_BASE_PRIORITY_NAME "SeIncreaseBasePriorityPrivilege"
|
|
|
|
#define SE_CREATE_PAGEFILE_NAME "SeCreatePagefilePrivilege"
|
|
|
|
#define SE_CREATE_PERMANENT_NAME "SeCreatePermanentPrivilege"
|
|
|
|
#define SE_BACKUP_NAME "SeBackupPrivilege"
|
|
|
|
#define SE_RESTORE_NAME "SeRestorePrivilege"
|
|
|
|
#define SE_SHUTDOWN_NAME "SeShutdownPrivilege"
|
|
|
|
#define SE_DEBUG_NAME "SeDebugPrivilege"
|
|
|
|
#define SE_AUDIT_NAME "SeAuditPrivilege"
|
|
|
|
#define SE_SYSTEM_ENVIRONMENT_NAME "SeSystemEnvironmentPrivilege"
|
|
|
|
#define SE_CHANGE_NOTIFY_NAME "SeChangeNotifyPrivilege"
|
|
|
|
#define SE_REMOTE_SHUTDOWN_NAME "SeRemoteShutdownPrivilege"
|
|
|
|
#define SE_UNDOCK_NAME "SeUndockPrivilege"
|
|
|
|
#define SE_ENABLE_DELEGATION_NAME "SeEnableDelegationPrivilege"
|
|
|
|
#define SE_MANAGE_VOLUME_NAME "SeManageVolumePrivilege"
|
|
|
|
#define SE_IMPERSONATE_NAME "SeImpersonatePrivilege"
|
|
|
|
#define SE_CREATE_GLOBAL_NAME "SeCreateGlobalPrivilege"
|
|
|
|
#endif
|
2002-12-19 22:12:35 +01:00
|
|
|
|
2012-07-30 18:08:33 +02:00
|
|
|
#define SE_GROUP_MANDATORY 0x00000001
|
|
|
|
#define SE_GROUP_ENABLED_BY_DEFAULT 0x00000002
|
|
|
|
#define SE_GROUP_ENABLED 0x00000004
|
|
|
|
#define SE_GROUP_OWNER 0x00000008
|
|
|
|
#define SE_GROUP_USE_FOR_DENY_ONLY 0x00000010
|
|
|
|
#define SE_GROUP_INTEGRITY 0x00000020
|
|
|
|
#define SE_GROUP_INTEGRITY_ENABLED 0x00000040
|
|
|
|
#define SE_GROUP_LOGON_ID 0xC0000000
|
|
|
|
#define SE_GROUP_RESOURCE 0x20000000
|
|
|
|
#define SE_GROUP_VALID_ATTRIBUTES 0xE000007F
|
2002-12-19 22:12:35 +01:00
|
|
|
|
|
|
|
#define SE_PRIVILEGE_ENABLED_BY_DEFAULT 0x00000001
|
|
|
|
#define SE_PRIVILEGE_ENABLED 0x00000002
|
2011-08-03 11:11:20 +02:00
|
|
|
#define SE_PRIVILEGE_REMOVED 0x00000004
|
2002-12-19 22:12:35 +01:00
|
|
|
#define SE_PRIVILEGE_USED_FOR_ACCESS 0x80000000
|
|
|
|
|
2005-04-22 23:17:15 +02:00
|
|
|
#define PRIVILEGE_SET_ALL_NECESSARY 1
|
|
|
|
|
2002-12-19 22:12:35 +01:00
|
|
|
#define SE_OWNER_DEFAULTED 0x00000001
|
|
|
|
#define SE_GROUP_DEFAULTED 0x00000002
|
|
|
|
#define SE_DACL_PRESENT 0x00000004
|
|
|
|
#define SE_DACL_DEFAULTED 0x00000008
|
|
|
|
#define SE_SACL_PRESENT 0x00000010
|
|
|
|
#define SE_SACL_DEFAULTED 0x00000020
|
|
|
|
#define SE_DACL_AUTO_INHERIT_REQ 0x00000100
|
|
|
|
#define SE_SACL_AUTO_INHERIT_REQ 0x00000200
|
|
|
|
#define SE_DACL_AUTO_INHERITED 0x00000400
|
|
|
|
#define SE_SACL_AUTO_INHERITED 0x00000800
|
|
|
|
#define SE_DACL_PROTECTED 0x00001000
|
|
|
|
#define SE_SACL_PROTECTED 0x00002000
|
2006-08-03 14:02:21 +02:00
|
|
|
#define SE_RM_CONTROL_VALID 0x00004000
|
2002-12-19 22:12:35 +01:00
|
|
|
#define SE_SELF_RELATIVE 0x00008000
|
1999-02-19 17:29:05 +01:00
|
|
|
|
1999-07-04 13:01:21 +02:00
|
|
|
typedef DWORD SECURITY_INFORMATION, *PSECURITY_INFORMATION;
|
|
|
|
typedef WORD SECURITY_DESCRIPTOR_CONTROL, *PSECURITY_DESCRIPTOR_CONTROL;
|
1999-02-17 18:45:54 +01:00
|
|
|
|
|
|
|
/* The security descriptor structure */
|
2000-01-12 05:59:42 +01:00
|
|
|
typedef struct {
|
|
|
|
BYTE Revision;
|
|
|
|
BYTE Sbz1;
|
|
|
|
SECURITY_DESCRIPTOR_CONTROL Control;
|
|
|
|
DWORD Owner;
|
|
|
|
DWORD Group;
|
|
|
|
DWORD Sacl;
|
|
|
|
DWORD Dacl;
|
|
|
|
} SECURITY_DESCRIPTOR_RELATIVE, *PISECURITY_DESCRIPTOR_RELATIVE;
|
|
|
|
|
1999-02-17 18:45:54 +01:00
|
|
|
typedef struct {
|
|
|
|
BYTE Revision;
|
|
|
|
BYTE Sbz1;
|
|
|
|
SECURITY_DESCRIPTOR_CONTROL Control;
|
|
|
|
PSID Owner;
|
|
|
|
PSID Group;
|
|
|
|
PACL Sacl;
|
|
|
|
PACL Dacl;
|
2004-08-14 01:55:43 +02:00
|
|
|
} SECURITY_DESCRIPTOR, *PISECURITY_DESCRIPTOR;
|
1999-02-17 18:45:54 +01:00
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
#define SECURITY_DESCRIPTOR_MIN_LENGTH (sizeof(SECURITY_DESCRIPTOR))
|
1999-02-19 17:29:05 +01:00
|
|
|
|
1999-02-17 18:45:54 +01:00
|
|
|
#endif /* _SECURITY_DEFINED */
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
/*
|
Release 980614
Sun Jun 15 10:30:35 1998 Andreas Mohr <100.30936@germany.net>
* [files/dos_fs.c] [files/file.c] [if1632/wprocs.spec]
[misc/aspi.c]
Added support for scanners that need Adaptec's ASPI2DOS.
* [graphics/env.c] [misc/printerdrv.c] [graphics/win16drv/init.c]
[if1632/gdi.spec] [include/gdi.h]
Enhanced printer support (especially Win95):
Drv[GS]etPrinterData, [GS]etEnvironment; added AbortProc handling.
* [misc/tapi32.c] [relay32/tapi32.spec]
Added some stubs.
* [configure.in] [graphics/fontengine.c] [include/windows.h]
[misc/comm.c] [misc/w32skrnl.c] [misc/win32s16.c]
Made Wine compile on HP-UX (just for fun ;)
* [controls/menu.c] [include/windows.h]
Complete rewrite of EnableMenuItem32.
Free Agent 32 still doesn't work :(
* [misc/version.c] [if1632/kernel.spec] [include/winbase.h]
Implemented GetVersionEx16.
* [misc/network.c] [if1632/user.spec]
Fixed arguments of WNetGetPropertyText.
* [misc/version.c] [relay32/comctl32.spec] [relay32/oleaut32.spec]
Implemented COMCTL32_DllGetVersion, OaBuildVersion.
* [win32/file.c]
Fixed UNC handling of CreateFile32.
Sat Jun 13 22:35:12 1998 Douglas Ridgway <ridgway@winehq.com>
* [Makefile.in] [Make.rules.in]
Added pattern for CVS merge files to 'make clean'
* [ole/olecli.c] [windows/scroll.c] [windows/grahics.c]
Add some DC handle unlocking. (When hdc's are always unlocked,
they can be made moveable.)
* [documentation/wine.texinfo]
Started a Wine Design chapter with discussion of
graphics driver model.
Sat Jun 13 11:19:25 1998 David Luyer <luyer@ucs.uwa.edu.au>
* [misc/main.c] [relay32/relay386.c]
Added new option -debugmsg +relay=.... or -debugmsg -relay=...
Fri Jun 12 22:56:09 1998 Marcus Meissner <marcus@jet.franken.de>
* [relay32/snoop.c][relay32/builtin.c][loader/pe_image.c]
Added inter win32 dll snooping. Use -debugmsg +snoop.
Number of arguments and string references are autodetected.
Some small bugfixes in the PE loader.
* [misc/system.c]
Disabled SystemTimers. They do not work with the current
%fs handling in the 32->16 relaycode. (helps labview)
* [msdos/dpmi.c][msdos/int2f.c][files/drive.c]
Added a monoton linear increasing memory allocator for DPMI (required
for LabView, HAFAS, ...)
mscdex handling in emulated realmode interrupts (for mcicda.drv)
allocate logical drives only once. (helps Myst)
* [files/profile.c]
Handle ^Z as space. Found on CDROMS (helps Myst Installer).
* [multimedia/mmio.c]
mmio* partially updated to win32. No funny additions.
* [windows/driver.c]
Added win32 driver handling (will be used for win32 multimedia/
msvideo drivers).
* [win32/device.c]
Added device handling (K32OBJ_DEVICE_IOCTL). Implemented
VTDAPI.5 (used by win95' WINMM.timeGetTime())
Fri Jun 12 18:01:18 1998 Rein Klazes <rklazes@casema.net>
* [ole/compobj.c relay32/ole32.spec]
Add a stub for CoLockObjectExternal32.
* [objects/clipping.c]
Fix in IntersectClipRect(), when there is no initial clipping
region.
* [graphics/x11drv/graphics.c]
Corrected several "one-off" errors for the Ellipse, Rectangle
and RoundRectangle (especially small ones) draw routines.
Arc and friends still have to be done.
Fri Jun 12 06:23:19 1998 Matthew Becker <mbecker@glasscity.net>
* [misc/ntdll.c]
Fixed some of the parameter counts.
* [misc/registry.c]
General cleanup, documentation.
Standard keys are allowed to be 'closed' and succeed.
* [misc/shell.c]
Check for correct return values from Reg* functions.
* [win32/newfns.c]
Added stubs for OpenDesktopA, SetThreadDesktop, and
SetUserObjectInformationA.
Wed Jun 10 20:28:08 1998 James Juran <jrj120@psu.edu>
* [debugger/break.c]
Fixed bug introduced in 980503 that broke the -debug command
line option for PE executable files.
* [configure.in] [include/acconfig.h] [include/debugtools.h]
[documentation/debug-msgs]
Added 'configure' options to compile out debugging messages.
Use --disable-debug to disable all debugging messages, and
--disable-trace to just disable TRACE messages. This results
in a stripped executable that is 15-20% smaller. This option
is very much untested--don't expect it to work.
* [documentation/debug-msgs] [documentation/debugging]
Minor updates.
* [*/*.c]
Fixed some compile warnings. This also includes the
compile_warnings_trivial patch from WineHQ.
Tue Jun 10 22:00:18 1998 Eric Kohl <ekohl@abo.rhein-zeitung.de>
* [windows/sysmetrics.c][include/sysmetrics.h]
Fixed some Win95 values.
* [windows/nonclient.c][include/windows.h]
Fixed some Win95 drawing bugs.
Added extended window style flags (WS_EX_xxx).
* [misc/printdrv.c][relay32/winspool.spec]
Added stubs for DeletePrinterDriver32A, DeleteMonitor32A
and DeletePort32A.
* [windows/mdi.c][include/windows.h][relay32/user32.spec]
Added stubs for CascadeWindows and TileWindows.
* [controls/toolbar.c][include/toolbar.h]
Fixed a few bugs and implemented new features.
* [misc/shellord.c][relay32/shell32.spec]
Added stubs for SHELL32_60, SHELL32_61 and SHELL32_184.
* [controls/comctl32undoc.c][relay32/comctl32.spec]
New file comctl32undoc.c. Contains undocumented functions
of COMCTL32.DLL. These functions are needed to run EXPLORER.EXE
IEXPLORE.EXE and TASKMAN.EXE.
* [controls/status.c]
Added text alignment.
Tue Jun 8 22:00:00 1998 Bertho Stultiens <bertho@akhphd.au.dk>
* [programs/*/Makefile.in]
Changed the rules to use wrc as resource compiler but
passing the source through gcc first for macro expansion.
* [programs/*/*.rc]
Added #include "windows.h" for the resource compiler in the
appropriate files.
* [tools/wrc/wrc.[ch]] [tools/wrc/writeres.c]
Added commandline option -A for autoregister code.
Corrected the underscore problem by checking the proper define
from config.h.
Sun Jun 7 22:09:29 1998 Pascal Cuoq <pcuoq@ens-lyon.fr>
* [ole/ole2nls.c] [memory/string.c]
Improved LCMapString32A, and changed CompareString32A,
lstrcmp, lstrcmpi to use it.
Sat Jun 6 19:00:50 1998 Martin Strmberg <ams@ludd.luth.se>
* [include/winnt.h]
Added typedefs for security and tokens.
Sat Jun 6 12:26:31 1998 Morten Welinder <terra@diku.dk>
* [objects/text.c]
Use debugstr_an in DrawText16.
* [loader/resource.c]
Use debugres_w in FindResourceEx32W. Avoid crashing during
debug when wm is NULL.
* [if1632/relay.c]
In RELAY_DebugCallTo16, send output to the right place and
avoid side effects in macro arguments.
Wed Jun 3 20:56:03 1998 Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
* [controls/scroll.c] [windows/nonclient.c]
Fix several off by one errors in scrollbar painting.
Tue Jun 2 23:58:59 1998 Insomnia (Stea Greene) <insomnia@core.binghamton.edu>
* [graphics/dsound.c]
Rewrote mixer code to handle panning and volume for 16->16, 16->8,
8->16, and 8->8 bit mixes. Conforms to DirectX's "logarithmic
hearing scale" as specified in M$VC docs. Still does not handle
mixing of different frequencies (I am still working on that).
Tested 16->16 extensively with StarCraft. Other mixing combinations
untested but should work fine. Still kind of a work in progress,
so be warned.
Tue Jun 2 03:31:33 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [tools/wrc/utils.c]
dup_basename: fix to strip directory.
Mon Jun 1 20:00:00 1998 Juergen Schmied <juergen.schmied@metronet.de>
* [include/windows.h] [objects/cursoricon.c] [relay32/user32.spec]
Added stubs LoadCursorFromFileW and LoadCursorFromFileA.
1998-06-14 17:24:15 +02:00
|
|
|
* SID_AND_ATTRIBUTES
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef struct _SID_AND_ATTRIBUTES {
|
2002-06-01 01:06:46 +02:00
|
|
|
PSID Sid;
|
|
|
|
DWORD Attributes;
|
2008-03-21 23:37:36 +01:00
|
|
|
} SID_AND_ATTRIBUTES, *PSID_AND_ATTRIBUTES;
|
2002-06-01 01:06:46 +02:00
|
|
|
|
1999-12-12 00:19:54 +01:00
|
|
|
/* security entities */
|
2011-10-26 23:45:45 +02:00
|
|
|
#define SECURITY_NULL_RID __MSABI_LONG(0x00000000)
|
|
|
|
#define SECURITY_WORLD_RID __MSABI_LONG(0x00000000)
|
|
|
|
#define SECURITY_LOCAL_RID __MSABI_LONG(0X00000000)
|
1999-12-12 00:19:54 +01:00
|
|
|
|
|
|
|
#define SECURITY_NULL_SID_AUTHORITY {0,0,0,0,0,0}
|
|
|
|
|
|
|
|
/* S-1-1 */
|
|
|
|
#define SECURITY_WORLD_SID_AUTHORITY {0,0,0,0,0,1}
|
|
|
|
|
|
|
|
/* S-1-2 */
|
|
|
|
#define SECURITY_LOCAL_SID_AUTHORITY {0,0,0,0,0,2}
|
|
|
|
|
|
|
|
/* S-1-3 */
|
|
|
|
#define SECURITY_CREATOR_SID_AUTHORITY {0,0,0,0,0,3}
|
2011-10-26 23:45:45 +02:00
|
|
|
#define SECURITY_CREATOR_OWNER_RID __MSABI_LONG(0x00000000)
|
|
|
|
#define SECURITY_CREATOR_GROUP_RID __MSABI_LONG(0x00000001)
|
|
|
|
#define SECURITY_CREATOR_OWNER_SERVER_RID __MSABI_LONG(0x00000002)
|
|
|
|
#define SECURITY_CREATOR_GROUP_SERVER_RID __MSABI_LONG(0x00000003)
|
2018-10-08 07:06:28 +02:00
|
|
|
#define SECURITY_CREATOR_OWNER_RIGHTS_RID __MSABI_LONG(0x00000004)
|
1999-12-12 00:19:54 +01:00
|
|
|
|
|
|
|
/* S-1-4 */
|
|
|
|
#define SECURITY_NON_UNIQUE_AUTHORITY {0,0,0,0,0,4}
|
|
|
|
|
|
|
|
/* S-1-5 */
|
2002-06-01 01:06:46 +02:00
|
|
|
#define SECURITY_NT_AUTHORITY {0,0,0,0,0,5}
|
2011-10-26 23:45:45 +02:00
|
|
|
#define SECURITY_DIALUP_RID __MSABI_LONG(0x00000001)
|
|
|
|
#define SECURITY_NETWORK_RID __MSABI_LONG(0x00000002)
|
|
|
|
#define SECURITY_BATCH_RID __MSABI_LONG(0x00000003)
|
|
|
|
#define SECURITY_INTERACTIVE_RID __MSABI_LONG(0x00000004)
|
|
|
|
#define SECURITY_LOGON_IDS_RID __MSABI_LONG(0x00000005)
|
|
|
|
#define SECURITY_SERVICE_RID __MSABI_LONG(0x00000006)
|
|
|
|
#define SECURITY_ANONYMOUS_LOGON_RID __MSABI_LONG(0x00000007)
|
|
|
|
#define SECURITY_PROXY_RID __MSABI_LONG(0x00000008)
|
|
|
|
#define SECURITY_ENTERPRISE_CONTROLLERS_RID __MSABI_LONG(0x00000009)
|
2006-07-14 20:52:16 +02:00
|
|
|
#define SECURITY_SERVER_LOGON_RID SECURITY_ENTERPRISE_CONTROLLERS_RID
|
2011-10-26 23:45:45 +02:00
|
|
|
#define SECURITY_PRINCIPAL_SELF_RID __MSABI_LONG(0x0000000A)
|
|
|
|
#define SECURITY_AUTHENTICATED_USER_RID __MSABI_LONG(0x0000000B)
|
|
|
|
#define SECURITY_RESTRICTED_CODE_RID __MSABI_LONG(0x0000000C)
|
|
|
|
#define SECURITY_TERMINAL_SERVER_RID __MSABI_LONG(0x0000000D)
|
|
|
|
#define SECURITY_REMOTE_LOGON_RID __MSABI_LONG(0x0000000E)
|
|
|
|
#define SECURITY_THIS_ORGANIZATION_RID __MSABI_LONG(0x0000000F)
|
|
|
|
#define SECURITY_LOCAL_SYSTEM_RID __MSABI_LONG(0x00000012)
|
|
|
|
#define SECURITY_LOCAL_SERVICE_RID __MSABI_LONG(0x00000013)
|
|
|
|
#define SECURITY_NETWORK_SERVICE_RID __MSABI_LONG(0x00000014)
|
|
|
|
#define SECURITY_NT_NON_UNIQUE __MSABI_LONG(0x00000015)
|
|
|
|
#define SECURITY_BUILTIN_DOMAIN_RID __MSABI_LONG(0x00000020)
|
|
|
|
|
|
|
|
#define SECURITY_PACKAGE_BASE_RID __MSABI_LONG(0x00000040)
|
|
|
|
#define SECURITY_PACKAGE_NTLM_RID __MSABI_LONG(0x0000000A)
|
|
|
|
#define SECURITY_PACKAGE_SCHANNEL_RID __MSABI_LONG(0x0000000E)
|
|
|
|
#define SECURITY_PACKAGE_DIGEST_RID __MSABI_LONG(0x00000015)
|
|
|
|
#define SECURITY_MAX_ALWAYS_FILTERED __MSABI_LONG(0x000003E7)
|
|
|
|
#define SECURITY_MIN_NEVER_FILTERED __MSABI_LONG(0x000003E8)
|
|
|
|
#define SECURITY_OTHER_ORGANIZATION_RID __MSABI_LONG(0x000003E8)
|
|
|
|
|
|
|
|
#define FOREST_USER_RID_MAX __MSABI_LONG(0x000001F3)
|
|
|
|
#define DOMAIN_USER_RID_ADMIN __MSABI_LONG(0x000001F4)
|
|
|
|
#define DOMAIN_USER_RID_GUEST __MSABI_LONG(0x000001F5)
|
|
|
|
#define DOMAIN_USER_RID_KRBTGT __MSABI_LONG(0x000001F6)
|
|
|
|
#define DOMAIN_USER_RID_MAX __MSABI_LONG(0x000003E7)
|
|
|
|
|
|
|
|
#define DOMAIN_GROUP_RID_ADMINS __MSABI_LONG(0x00000200)
|
|
|
|
#define DOMAIN_GROUP_RID_USERS __MSABI_LONG(0x00000201)
|
|
|
|
#define DOMAIN_GROUP_RID_GUESTS __MSABI_LONG(0x00000202)
|
|
|
|
#define DOMAIN_GROUP_RID_COMPUTERS __MSABI_LONG(0x00000203)
|
|
|
|
#define DOMAIN_GROUP_RID_CONTROLLERS __MSABI_LONG(0x00000204)
|
|
|
|
#define DOMAIN_GROUP_RID_CERT_ADMINS __MSABI_LONG(0x00000205)
|
|
|
|
#define DOMAIN_GROUP_RID_SCHEMA_ADMINS __MSABI_LONG(0x00000206)
|
|
|
|
#define DOMAIN_GROUP_RID_ENTERPRISE_ADMINS __MSABI_LONG(0x00000207)
|
|
|
|
#define DOMAIN_GROUP_RID_POLICY_ADMINS __MSABI_LONG(0x00000208)
|
2000-01-12 05:59:42 +01:00
|
|
|
|
2015-08-26 08:44:45 +02:00
|
|
|
#define SECURITY_APP_PACKAGE_AUTHORITY {0,0,0,0,0,15}
|
|
|
|
#define SECURITY_APP_PACKAGE_BASE_RID __MSABI_LONG(0x000000002)
|
|
|
|
#define SECURITY_BUILTIN_APP_PACKAGE_RID_COUNT __MSABI_LONG(0x000000002)
|
|
|
|
#define SECURITY_APP_PACKAGE_RID_COUNT __MSABI_LONG(0x000000008)
|
|
|
|
#define SECURITY_CAPABILITY_BASE_RID __MSABI_LONG(0x000000003)
|
|
|
|
#define SECURITY_CAPABILITY_APP_RID __MSABI_LONG(0x000000400)
|
|
|
|
#define SECURITY_BUILTIN_CAPABILITY_RID_COUNT __MSABI_LONG(0x000000002)
|
|
|
|
#define SECURITY_CAPABILITY_RID_COUNT __MSABI_LONG(0x000000005)
|
|
|
|
#define SECURITY_PARENT_PACKAGE_RID_COUNT SECURITY_APP_PACKAGE_RID_COUNT
|
|
|
|
#define SECURITY_CHILD_PACKAGE_RID_COUNT __MSABI_LONG(0x00000000c)
|
|
|
|
#define SECURITY_BUILTIN_PACKAGE_ANY_PACKAGE __MSABI_LONG(0x000000001)
|
|
|
|
|
2009-02-03 19:55:14 +01:00
|
|
|
#define SECURITY_MANDATORY_LABEL_AUTHORITY {0,0,0,0,0,16}
|
2011-10-26 23:45:45 +02:00
|
|
|
#define SECURITY_MANDATORY_UNTRUSTED_RID __MSABI_LONG(0x00000000)
|
|
|
|
#define SECURITY_MANDATORY_LOW_RID __MSABI_LONG(0x00001000)
|
|
|
|
#define SECURITY_MANDATORY_MEDIUM_RID __MSABI_LONG(0x00002000)
|
|
|
|
#define SECURITY_MANDATORY_HIGH_RID __MSABI_LONG(0x00003000)
|
|
|
|
#define SECURITY_MANDATORY_SYSTEM_RID __MSABI_LONG(0x00004000)
|
|
|
|
#define SECURITY_MANDATORY_PROTECTED_PROCESS_RID __MSABI_LONG(0x00005000)
|
|
|
|
|
|
|
|
#define DOMAIN_ALIAS_RID_ADMINS __MSABI_LONG(0x00000220)
|
|
|
|
#define DOMAIN_ALIAS_RID_USERS __MSABI_LONG(0x00000221)
|
|
|
|
#define DOMAIN_ALIAS_RID_GUESTS __MSABI_LONG(0x00000222)
|
|
|
|
#define DOMAIN_ALIAS_RID_POWER_USERS __MSABI_LONG(0x00000223)
|
|
|
|
|
|
|
|
#define DOMAIN_ALIAS_RID_ACCOUNT_OPS __MSABI_LONG(0x00000224)
|
|
|
|
#define DOMAIN_ALIAS_RID_SYSTEM_OPS __MSABI_LONG(0x00000225)
|
|
|
|
#define DOMAIN_ALIAS_RID_PRINT_OPS __MSABI_LONG(0x00000226)
|
|
|
|
#define DOMAIN_ALIAS_RID_BACKUP_OPS __MSABI_LONG(0x00000227)
|
|
|
|
|
|
|
|
#define DOMAIN_ALIAS_RID_REPLICATOR __MSABI_LONG(0x00000228)
|
|
|
|
#define DOMAIN_ALIAS_RID_RAS_SERVERS __MSABI_LONG(0x00000229)
|
|
|
|
#define DOMAIN_ALIAS_RID_PREW2KCOMPACCESS __MSABI_LONG(0x0000022A)
|
|
|
|
#define DOMAIN_ALIAS_RID_REMOTE_DESKTOP_USERS __MSABI_LONG(0x0000022B)
|
|
|
|
#define DOMAIN_ALIAS_RID_NETWORK_CONFIGURATION_OPS __MSABI_LONG(0x0000022C)
|
|
|
|
#define DOMAIN_ALIAS_RID_INCOMING_FOREST_TRUST_BUILDERS __MSABI_LONG(0x0000022D)
|
|
|
|
|
|
|
|
#define DOMAIN_ALIAS_RID_MONITORING_USERS __MSABI_LONG(0x0000022E)
|
|
|
|
#define DOMAIN_ALIAS_RID_LOGGING_USERS __MSABI_LONG(0x0000022F)
|
|
|
|
#define DOMAIN_ALIAS_RID_AUTHORIZATIONACCESS __MSABI_LONG(0x00000230)
|
|
|
|
#define DOMAIN_ALIAS_RID_TS_LICENSE_SERVERS __MSABI_LONG(0x00000231)
|
|
|
|
#define DOMAIN_ALIAS_RID_DCOM_USERS __MSABI_LONG(0x00000232)
|
1999-12-12 00:19:54 +01:00
|
|
|
|
|
|
|
#define SECURITY_SERVER_LOGON_RID SECURITY_ENTERPRISE_CONTROLLERS_RID
|
|
|
|
|
2011-10-26 23:45:45 +02:00
|
|
|
#define SECURITY_PACKAGE_RID_COUNT __MSABI_LONG(2)
|
|
|
|
#define SECURITY_LOGON_IDS_RID_COUNT __MSABI_LONG(3)
|
1999-12-12 00:19:54 +01:00
|
|
|
|
2006-07-14 20:52:16 +02:00
|
|
|
typedef enum {
|
|
|
|
WinNullSid = 0,
|
|
|
|
WinWorldSid = 1,
|
|
|
|
WinLocalSid = 2,
|
|
|
|
WinCreatorOwnerSid = 3,
|
|
|
|
WinCreatorGroupSid = 4,
|
|
|
|
WinCreatorOwnerServerSid = 5,
|
|
|
|
WinCreatorGroupServerSid = 6,
|
|
|
|
WinNtAuthoritySid = 7,
|
|
|
|
WinDialupSid = 8,
|
|
|
|
WinNetworkSid = 9,
|
|
|
|
WinBatchSid = 10,
|
|
|
|
WinInteractiveSid = 11,
|
|
|
|
WinServiceSid = 12,
|
|
|
|
WinAnonymousSid = 13,
|
|
|
|
WinProxySid = 14,
|
|
|
|
WinEnterpriseControllersSid = 15,
|
|
|
|
WinSelfSid = 16,
|
|
|
|
WinAuthenticatedUserSid = 17,
|
|
|
|
WinRestrictedCodeSid = 18,
|
|
|
|
WinTerminalServerSid = 19,
|
|
|
|
WinRemoteLogonIdSid = 20,
|
|
|
|
WinLogonIdsSid = 21,
|
|
|
|
WinLocalSystemSid = 22,
|
|
|
|
WinLocalServiceSid = 23,
|
|
|
|
WinNetworkServiceSid = 24,
|
|
|
|
WinBuiltinDomainSid = 25,
|
|
|
|
WinBuiltinAdministratorsSid = 26,
|
|
|
|
WinBuiltinUsersSid = 27,
|
|
|
|
WinBuiltinGuestsSid = 28,
|
|
|
|
WinBuiltinPowerUsersSid = 29,
|
|
|
|
WinBuiltinAccountOperatorsSid = 30,
|
|
|
|
WinBuiltinSystemOperatorsSid = 31,
|
|
|
|
WinBuiltinPrintOperatorsSid = 32,
|
|
|
|
WinBuiltinBackupOperatorsSid = 33,
|
|
|
|
WinBuiltinReplicatorSid = 34,
|
|
|
|
WinBuiltinPreWindows2000CompatibleAccessSid = 35,
|
|
|
|
WinBuiltinRemoteDesktopUsersSid = 36,
|
|
|
|
WinBuiltinNetworkConfigurationOperatorsSid = 37,
|
|
|
|
WinAccountAdministratorSid = 38,
|
|
|
|
WinAccountGuestSid = 39,
|
|
|
|
WinAccountKrbtgtSid = 40,
|
|
|
|
WinAccountDomainAdminsSid = 41,
|
|
|
|
WinAccountDomainUsersSid = 42,
|
|
|
|
WinAccountDomainGuestsSid = 43,
|
|
|
|
WinAccountComputersSid = 44,
|
|
|
|
WinAccountControllersSid = 45,
|
|
|
|
WinAccountCertAdminsSid = 46,
|
|
|
|
WinAccountSchemaAdminsSid = 47,
|
|
|
|
WinAccountEnterpriseAdminsSid = 48,
|
|
|
|
WinAccountPolicyAdminsSid = 49,
|
|
|
|
WinAccountRasAndIasServersSid = 50,
|
|
|
|
WinNTLMAuthenticationSid = 51,
|
|
|
|
WinDigestAuthenticationSid = 52,
|
|
|
|
WinSChannelAuthenticationSid = 53,
|
|
|
|
WinThisOrganizationSid = 54,
|
|
|
|
WinOtherOrganizationSid = 55,
|
|
|
|
WinBuiltinIncomingForestTrustBuildersSid = 56,
|
|
|
|
WinBuiltinPerfMonitoringUsersSid = 57,
|
|
|
|
WinBuiltinPerfLoggingUsersSid = 58,
|
|
|
|
WinBuiltinAuthorizationAccessSid = 59,
|
2007-10-25 20:53:46 +02:00
|
|
|
WinBuiltinTerminalServerLicenseServersSid = 60,
|
2009-02-03 19:55:14 +01:00
|
|
|
WinBuiltinDCOMUsersSid = 61,
|
|
|
|
WinBuiltinIUsersSid = 62,
|
|
|
|
WinIUserSid = 63,
|
|
|
|
WinBuiltinCryptoOperatorsSid = 64,
|
|
|
|
WinUntrustedLabelSid = 65,
|
|
|
|
WinLowLabelSid = 66,
|
|
|
|
WinMediumLabelSid = 67,
|
|
|
|
WinHighLabelSid = 68,
|
|
|
|
WinSystemLabelSid = 69,
|
|
|
|
WinWriteRestrictedCodeSid = 70,
|
|
|
|
WinCreatorOwnerRightsSid = 71,
|
|
|
|
WinCacheablePrincipalsGroupSid = 72,
|
|
|
|
WinNonCacheablePrincipalsGroupSid = 73,
|
|
|
|
WinEnterpriseReadonlyControllersSid = 74,
|
|
|
|
WinAccountReadonlyControllersSid = 75,
|
|
|
|
WinBuiltinEventLogReadersGroup = 76,
|
2010-12-04 16:37:42 +01:00
|
|
|
WinNewEnterpriseReadonlyControllersSid = 77,
|
|
|
|
WinBuiltinCertSvcDComAccessGroup = 78,
|
|
|
|
WinMediumPlusLabelSid = 79,
|
|
|
|
WinLocalLogonSid = 80,
|
|
|
|
WinConsoleLogonSid = 81,
|
|
|
|
WinThisOrganizationCertificateSid = 82,
|
2015-08-19 05:08:09 +02:00
|
|
|
WinApplicationPackageAuthoritySid = 83,
|
|
|
|
WinBuiltinAnyPackageSid = 84,
|
|
|
|
WinCapabilityInternetClientSid = 85,
|
|
|
|
WinCapabilityInternetClientServerSid = 86,
|
|
|
|
WinCapabilityPrivateNetworkClientServerSid = 87,
|
|
|
|
WinCapabilityPicturesLibrarySid = 88,
|
|
|
|
WinCapabilityVideosLibrarySid = 89,
|
|
|
|
WinCapabilityMusicLibrarySid = 90,
|
|
|
|
WinCapabilityDocumentsLibrarySid = 91,
|
|
|
|
WinCapabilitySharedUserCertificatesSid = 92,
|
|
|
|
WinCapabilityEnterpriseAuthenticationSid = 93,
|
|
|
|
WinCapabilityRemovableStorageSid = 94,
|
|
|
|
WinBuiltinRDSRemoteAccessServersSid = 95,
|
|
|
|
WinBuiltinRDSEndpointServersSid = 96,
|
|
|
|
WinBuiltinRDSManagementServersSid = 97,
|
|
|
|
WinUserModeDriversSid = 98,
|
|
|
|
WinBuiltinHyperVAdminsSid = 99,
|
|
|
|
WinAccountCloneableControllersSid = 100,
|
|
|
|
WinBuiltinAccessControlAssistanceOperatorsSid = 101,
|
|
|
|
WinBuiltinRemoteManagementUsersSid = 102,
|
|
|
|
WinAuthenticationAuthorityAssertedSid = 103,
|
|
|
|
WinAuthenticationServiceAssertedSid = 104,
|
|
|
|
WinLocalAccountSid = 105,
|
|
|
|
WinLocalAccountAndAdministratorSid = 106,
|
|
|
|
WinAccountProtectedUsersSid = 107,
|
2006-07-14 20:52:16 +02:00
|
|
|
} WELL_KNOWN_SID_TYPE;
|
|
|
|
|
Release 980614
Sun Jun 15 10:30:35 1998 Andreas Mohr <100.30936@germany.net>
* [files/dos_fs.c] [files/file.c] [if1632/wprocs.spec]
[misc/aspi.c]
Added support for scanners that need Adaptec's ASPI2DOS.
* [graphics/env.c] [misc/printerdrv.c] [graphics/win16drv/init.c]
[if1632/gdi.spec] [include/gdi.h]
Enhanced printer support (especially Win95):
Drv[GS]etPrinterData, [GS]etEnvironment; added AbortProc handling.
* [misc/tapi32.c] [relay32/tapi32.spec]
Added some stubs.
* [configure.in] [graphics/fontengine.c] [include/windows.h]
[misc/comm.c] [misc/w32skrnl.c] [misc/win32s16.c]
Made Wine compile on HP-UX (just for fun ;)
* [controls/menu.c] [include/windows.h]
Complete rewrite of EnableMenuItem32.
Free Agent 32 still doesn't work :(
* [misc/version.c] [if1632/kernel.spec] [include/winbase.h]
Implemented GetVersionEx16.
* [misc/network.c] [if1632/user.spec]
Fixed arguments of WNetGetPropertyText.
* [misc/version.c] [relay32/comctl32.spec] [relay32/oleaut32.spec]
Implemented COMCTL32_DllGetVersion, OaBuildVersion.
* [win32/file.c]
Fixed UNC handling of CreateFile32.
Sat Jun 13 22:35:12 1998 Douglas Ridgway <ridgway@winehq.com>
* [Makefile.in] [Make.rules.in]
Added pattern for CVS merge files to 'make clean'
* [ole/olecli.c] [windows/scroll.c] [windows/grahics.c]
Add some DC handle unlocking. (When hdc's are always unlocked,
they can be made moveable.)
* [documentation/wine.texinfo]
Started a Wine Design chapter with discussion of
graphics driver model.
Sat Jun 13 11:19:25 1998 David Luyer <luyer@ucs.uwa.edu.au>
* [misc/main.c] [relay32/relay386.c]
Added new option -debugmsg +relay=.... or -debugmsg -relay=...
Fri Jun 12 22:56:09 1998 Marcus Meissner <marcus@jet.franken.de>
* [relay32/snoop.c][relay32/builtin.c][loader/pe_image.c]
Added inter win32 dll snooping. Use -debugmsg +snoop.
Number of arguments and string references are autodetected.
Some small bugfixes in the PE loader.
* [misc/system.c]
Disabled SystemTimers. They do not work with the current
%fs handling in the 32->16 relaycode. (helps labview)
* [msdos/dpmi.c][msdos/int2f.c][files/drive.c]
Added a monoton linear increasing memory allocator for DPMI (required
for LabView, HAFAS, ...)
mscdex handling in emulated realmode interrupts (for mcicda.drv)
allocate logical drives only once. (helps Myst)
* [files/profile.c]
Handle ^Z as space. Found on CDROMS (helps Myst Installer).
* [multimedia/mmio.c]
mmio* partially updated to win32. No funny additions.
* [windows/driver.c]
Added win32 driver handling (will be used for win32 multimedia/
msvideo drivers).
* [win32/device.c]
Added device handling (K32OBJ_DEVICE_IOCTL). Implemented
VTDAPI.5 (used by win95' WINMM.timeGetTime())
Fri Jun 12 18:01:18 1998 Rein Klazes <rklazes@casema.net>
* [ole/compobj.c relay32/ole32.spec]
Add a stub for CoLockObjectExternal32.
* [objects/clipping.c]
Fix in IntersectClipRect(), when there is no initial clipping
region.
* [graphics/x11drv/graphics.c]
Corrected several "one-off" errors for the Ellipse, Rectangle
and RoundRectangle (especially small ones) draw routines.
Arc and friends still have to be done.
Fri Jun 12 06:23:19 1998 Matthew Becker <mbecker@glasscity.net>
* [misc/ntdll.c]
Fixed some of the parameter counts.
* [misc/registry.c]
General cleanup, documentation.
Standard keys are allowed to be 'closed' and succeed.
* [misc/shell.c]
Check for correct return values from Reg* functions.
* [win32/newfns.c]
Added stubs for OpenDesktopA, SetThreadDesktop, and
SetUserObjectInformationA.
Wed Jun 10 20:28:08 1998 James Juran <jrj120@psu.edu>
* [debugger/break.c]
Fixed bug introduced in 980503 that broke the -debug command
line option for PE executable files.
* [configure.in] [include/acconfig.h] [include/debugtools.h]
[documentation/debug-msgs]
Added 'configure' options to compile out debugging messages.
Use --disable-debug to disable all debugging messages, and
--disable-trace to just disable TRACE messages. This results
in a stripped executable that is 15-20% smaller. This option
is very much untested--don't expect it to work.
* [documentation/debug-msgs] [documentation/debugging]
Minor updates.
* [*/*.c]
Fixed some compile warnings. This also includes the
compile_warnings_trivial patch from WineHQ.
Tue Jun 10 22:00:18 1998 Eric Kohl <ekohl@abo.rhein-zeitung.de>
* [windows/sysmetrics.c][include/sysmetrics.h]
Fixed some Win95 values.
* [windows/nonclient.c][include/windows.h]
Fixed some Win95 drawing bugs.
Added extended window style flags (WS_EX_xxx).
* [misc/printdrv.c][relay32/winspool.spec]
Added stubs for DeletePrinterDriver32A, DeleteMonitor32A
and DeletePort32A.
* [windows/mdi.c][include/windows.h][relay32/user32.spec]
Added stubs for CascadeWindows and TileWindows.
* [controls/toolbar.c][include/toolbar.h]
Fixed a few bugs and implemented new features.
* [misc/shellord.c][relay32/shell32.spec]
Added stubs for SHELL32_60, SHELL32_61 and SHELL32_184.
* [controls/comctl32undoc.c][relay32/comctl32.spec]
New file comctl32undoc.c. Contains undocumented functions
of COMCTL32.DLL. These functions are needed to run EXPLORER.EXE
IEXPLORE.EXE and TASKMAN.EXE.
* [controls/status.c]
Added text alignment.
Tue Jun 8 22:00:00 1998 Bertho Stultiens <bertho@akhphd.au.dk>
* [programs/*/Makefile.in]
Changed the rules to use wrc as resource compiler but
passing the source through gcc first for macro expansion.
* [programs/*/*.rc]
Added #include "windows.h" for the resource compiler in the
appropriate files.
* [tools/wrc/wrc.[ch]] [tools/wrc/writeres.c]
Added commandline option -A for autoregister code.
Corrected the underscore problem by checking the proper define
from config.h.
Sun Jun 7 22:09:29 1998 Pascal Cuoq <pcuoq@ens-lyon.fr>
* [ole/ole2nls.c] [memory/string.c]
Improved LCMapString32A, and changed CompareString32A,
lstrcmp, lstrcmpi to use it.
Sat Jun 6 19:00:50 1998 Martin Strmberg <ams@ludd.luth.se>
* [include/winnt.h]
Added typedefs for security and tokens.
Sat Jun 6 12:26:31 1998 Morten Welinder <terra@diku.dk>
* [objects/text.c]
Use debugstr_an in DrawText16.
* [loader/resource.c]
Use debugres_w in FindResourceEx32W. Avoid crashing during
debug when wm is NULL.
* [if1632/relay.c]
In RELAY_DebugCallTo16, send output to the right place and
avoid side effects in macro arguments.
Wed Jun 3 20:56:03 1998 Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
* [controls/scroll.c] [windows/nonclient.c]
Fix several off by one errors in scrollbar painting.
Tue Jun 2 23:58:59 1998 Insomnia (Stea Greene) <insomnia@core.binghamton.edu>
* [graphics/dsound.c]
Rewrote mixer code to handle panning and volume for 16->16, 16->8,
8->16, and 8->8 bit mixes. Conforms to DirectX's "logarithmic
hearing scale" as specified in M$VC docs. Still does not handle
mixing of different frequencies (I am still working on that).
Tested 16->16 extensively with StarCraft. Other mixing combinations
untested but should work fine. Still kind of a work in progress,
so be warned.
Tue Jun 2 03:31:33 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [tools/wrc/utils.c]
dup_basename: fix to strip directory.
Mon Jun 1 20:00:00 1998 Juergen Schmied <juergen.schmied@metronet.de>
* [include/windows.h] [objects/cursoricon.c] [relay32/user32.spec]
Added stubs LoadCursorFromFileW and LoadCursorFromFileA.
1998-06-14 17:24:15 +02:00
|
|
|
/*
|
|
|
|
* TOKEN_USER
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef struct _TOKEN_USER {
|
2004-08-27 21:11:37 +02:00
|
|
|
SID_AND_ATTRIBUTES User;
|
|
|
|
} TOKEN_USER, *PTOKEN_USER;
|
Release 980614
Sun Jun 15 10:30:35 1998 Andreas Mohr <100.30936@germany.net>
* [files/dos_fs.c] [files/file.c] [if1632/wprocs.spec]
[misc/aspi.c]
Added support for scanners that need Adaptec's ASPI2DOS.
* [graphics/env.c] [misc/printerdrv.c] [graphics/win16drv/init.c]
[if1632/gdi.spec] [include/gdi.h]
Enhanced printer support (especially Win95):
Drv[GS]etPrinterData, [GS]etEnvironment; added AbortProc handling.
* [misc/tapi32.c] [relay32/tapi32.spec]
Added some stubs.
* [configure.in] [graphics/fontengine.c] [include/windows.h]
[misc/comm.c] [misc/w32skrnl.c] [misc/win32s16.c]
Made Wine compile on HP-UX (just for fun ;)
* [controls/menu.c] [include/windows.h]
Complete rewrite of EnableMenuItem32.
Free Agent 32 still doesn't work :(
* [misc/version.c] [if1632/kernel.spec] [include/winbase.h]
Implemented GetVersionEx16.
* [misc/network.c] [if1632/user.spec]
Fixed arguments of WNetGetPropertyText.
* [misc/version.c] [relay32/comctl32.spec] [relay32/oleaut32.spec]
Implemented COMCTL32_DllGetVersion, OaBuildVersion.
* [win32/file.c]
Fixed UNC handling of CreateFile32.
Sat Jun 13 22:35:12 1998 Douglas Ridgway <ridgway@winehq.com>
* [Makefile.in] [Make.rules.in]
Added pattern for CVS merge files to 'make clean'
* [ole/olecli.c] [windows/scroll.c] [windows/grahics.c]
Add some DC handle unlocking. (When hdc's are always unlocked,
they can be made moveable.)
* [documentation/wine.texinfo]
Started a Wine Design chapter with discussion of
graphics driver model.
Sat Jun 13 11:19:25 1998 David Luyer <luyer@ucs.uwa.edu.au>
* [misc/main.c] [relay32/relay386.c]
Added new option -debugmsg +relay=.... or -debugmsg -relay=...
Fri Jun 12 22:56:09 1998 Marcus Meissner <marcus@jet.franken.de>
* [relay32/snoop.c][relay32/builtin.c][loader/pe_image.c]
Added inter win32 dll snooping. Use -debugmsg +snoop.
Number of arguments and string references are autodetected.
Some small bugfixes in the PE loader.
* [misc/system.c]
Disabled SystemTimers. They do not work with the current
%fs handling in the 32->16 relaycode. (helps labview)
* [msdos/dpmi.c][msdos/int2f.c][files/drive.c]
Added a monoton linear increasing memory allocator for DPMI (required
for LabView, HAFAS, ...)
mscdex handling in emulated realmode interrupts (for mcicda.drv)
allocate logical drives only once. (helps Myst)
* [files/profile.c]
Handle ^Z as space. Found on CDROMS (helps Myst Installer).
* [multimedia/mmio.c]
mmio* partially updated to win32. No funny additions.
* [windows/driver.c]
Added win32 driver handling (will be used for win32 multimedia/
msvideo drivers).
* [win32/device.c]
Added device handling (K32OBJ_DEVICE_IOCTL). Implemented
VTDAPI.5 (used by win95' WINMM.timeGetTime())
Fri Jun 12 18:01:18 1998 Rein Klazes <rklazes@casema.net>
* [ole/compobj.c relay32/ole32.spec]
Add a stub for CoLockObjectExternal32.
* [objects/clipping.c]
Fix in IntersectClipRect(), when there is no initial clipping
region.
* [graphics/x11drv/graphics.c]
Corrected several "one-off" errors for the Ellipse, Rectangle
and RoundRectangle (especially small ones) draw routines.
Arc and friends still have to be done.
Fri Jun 12 06:23:19 1998 Matthew Becker <mbecker@glasscity.net>
* [misc/ntdll.c]
Fixed some of the parameter counts.
* [misc/registry.c]
General cleanup, documentation.
Standard keys are allowed to be 'closed' and succeed.
* [misc/shell.c]
Check for correct return values from Reg* functions.
* [win32/newfns.c]
Added stubs for OpenDesktopA, SetThreadDesktop, and
SetUserObjectInformationA.
Wed Jun 10 20:28:08 1998 James Juran <jrj120@psu.edu>
* [debugger/break.c]
Fixed bug introduced in 980503 that broke the -debug command
line option for PE executable files.
* [configure.in] [include/acconfig.h] [include/debugtools.h]
[documentation/debug-msgs]
Added 'configure' options to compile out debugging messages.
Use --disable-debug to disable all debugging messages, and
--disable-trace to just disable TRACE messages. This results
in a stripped executable that is 15-20% smaller. This option
is very much untested--don't expect it to work.
* [documentation/debug-msgs] [documentation/debugging]
Minor updates.
* [*/*.c]
Fixed some compile warnings. This also includes the
compile_warnings_trivial patch from WineHQ.
Tue Jun 10 22:00:18 1998 Eric Kohl <ekohl@abo.rhein-zeitung.de>
* [windows/sysmetrics.c][include/sysmetrics.h]
Fixed some Win95 values.
* [windows/nonclient.c][include/windows.h]
Fixed some Win95 drawing bugs.
Added extended window style flags (WS_EX_xxx).
* [misc/printdrv.c][relay32/winspool.spec]
Added stubs for DeletePrinterDriver32A, DeleteMonitor32A
and DeletePort32A.
* [windows/mdi.c][include/windows.h][relay32/user32.spec]
Added stubs for CascadeWindows and TileWindows.
* [controls/toolbar.c][include/toolbar.h]
Fixed a few bugs and implemented new features.
* [misc/shellord.c][relay32/shell32.spec]
Added stubs for SHELL32_60, SHELL32_61 and SHELL32_184.
* [controls/comctl32undoc.c][relay32/comctl32.spec]
New file comctl32undoc.c. Contains undocumented functions
of COMCTL32.DLL. These functions are needed to run EXPLORER.EXE
IEXPLORE.EXE and TASKMAN.EXE.
* [controls/status.c]
Added text alignment.
Tue Jun 8 22:00:00 1998 Bertho Stultiens <bertho@akhphd.au.dk>
* [programs/*/Makefile.in]
Changed the rules to use wrc as resource compiler but
passing the source through gcc first for macro expansion.
* [programs/*/*.rc]
Added #include "windows.h" for the resource compiler in the
appropriate files.
* [tools/wrc/wrc.[ch]] [tools/wrc/writeres.c]
Added commandline option -A for autoregister code.
Corrected the underscore problem by checking the proper define
from config.h.
Sun Jun 7 22:09:29 1998 Pascal Cuoq <pcuoq@ens-lyon.fr>
* [ole/ole2nls.c] [memory/string.c]
Improved LCMapString32A, and changed CompareString32A,
lstrcmp, lstrcmpi to use it.
Sat Jun 6 19:00:50 1998 Martin Strmberg <ams@ludd.luth.se>
* [include/winnt.h]
Added typedefs for security and tokens.
Sat Jun 6 12:26:31 1998 Morten Welinder <terra@diku.dk>
* [objects/text.c]
Use debugstr_an in DrawText16.
* [loader/resource.c]
Use debugres_w in FindResourceEx32W. Avoid crashing during
debug when wm is NULL.
* [if1632/relay.c]
In RELAY_DebugCallTo16, send output to the right place and
avoid side effects in macro arguments.
Wed Jun 3 20:56:03 1998 Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
* [controls/scroll.c] [windows/nonclient.c]
Fix several off by one errors in scrollbar painting.
Tue Jun 2 23:58:59 1998 Insomnia (Stea Greene) <insomnia@core.binghamton.edu>
* [graphics/dsound.c]
Rewrote mixer code to handle panning and volume for 16->16, 16->8,
8->16, and 8->8 bit mixes. Conforms to DirectX's "logarithmic
hearing scale" as specified in M$VC docs. Still does not handle
mixing of different frequencies (I am still working on that).
Tested 16->16 extensively with StarCraft. Other mixing combinations
untested but should work fine. Still kind of a work in progress,
so be warned.
Tue Jun 2 03:31:33 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [tools/wrc/utils.c]
dup_basename: fix to strip directory.
Mon Jun 1 20:00:00 1998 Juergen Schmied <juergen.schmied@metronet.de>
* [include/windows.h] [objects/cursoricon.c] [relay32/user32.spec]
Added stubs LoadCursorFromFileW and LoadCursorFromFileA.
1998-06-14 17:24:15 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* TOKEN_GROUPS
|
|
|
|
*/
|
|
|
|
|
2004-08-27 21:11:37 +02:00
|
|
|
typedef struct _TOKEN_GROUPS {
|
|
|
|
DWORD GroupCount;
|
|
|
|
SID_AND_ATTRIBUTES Groups[ANYSIZE_ARRAY];
|
|
|
|
} TOKEN_GROUPS, *PTOKEN_GROUPS;
|
Release 980614
Sun Jun 15 10:30:35 1998 Andreas Mohr <100.30936@germany.net>
* [files/dos_fs.c] [files/file.c] [if1632/wprocs.spec]
[misc/aspi.c]
Added support for scanners that need Adaptec's ASPI2DOS.
* [graphics/env.c] [misc/printerdrv.c] [graphics/win16drv/init.c]
[if1632/gdi.spec] [include/gdi.h]
Enhanced printer support (especially Win95):
Drv[GS]etPrinterData, [GS]etEnvironment; added AbortProc handling.
* [misc/tapi32.c] [relay32/tapi32.spec]
Added some stubs.
* [configure.in] [graphics/fontengine.c] [include/windows.h]
[misc/comm.c] [misc/w32skrnl.c] [misc/win32s16.c]
Made Wine compile on HP-UX (just for fun ;)
* [controls/menu.c] [include/windows.h]
Complete rewrite of EnableMenuItem32.
Free Agent 32 still doesn't work :(
* [misc/version.c] [if1632/kernel.spec] [include/winbase.h]
Implemented GetVersionEx16.
* [misc/network.c] [if1632/user.spec]
Fixed arguments of WNetGetPropertyText.
* [misc/version.c] [relay32/comctl32.spec] [relay32/oleaut32.spec]
Implemented COMCTL32_DllGetVersion, OaBuildVersion.
* [win32/file.c]
Fixed UNC handling of CreateFile32.
Sat Jun 13 22:35:12 1998 Douglas Ridgway <ridgway@winehq.com>
* [Makefile.in] [Make.rules.in]
Added pattern for CVS merge files to 'make clean'
* [ole/olecli.c] [windows/scroll.c] [windows/grahics.c]
Add some DC handle unlocking. (When hdc's are always unlocked,
they can be made moveable.)
* [documentation/wine.texinfo]
Started a Wine Design chapter with discussion of
graphics driver model.
Sat Jun 13 11:19:25 1998 David Luyer <luyer@ucs.uwa.edu.au>
* [misc/main.c] [relay32/relay386.c]
Added new option -debugmsg +relay=.... or -debugmsg -relay=...
Fri Jun 12 22:56:09 1998 Marcus Meissner <marcus@jet.franken.de>
* [relay32/snoop.c][relay32/builtin.c][loader/pe_image.c]
Added inter win32 dll snooping. Use -debugmsg +snoop.
Number of arguments and string references are autodetected.
Some small bugfixes in the PE loader.
* [misc/system.c]
Disabled SystemTimers. They do not work with the current
%fs handling in the 32->16 relaycode. (helps labview)
* [msdos/dpmi.c][msdos/int2f.c][files/drive.c]
Added a monoton linear increasing memory allocator for DPMI (required
for LabView, HAFAS, ...)
mscdex handling in emulated realmode interrupts (for mcicda.drv)
allocate logical drives only once. (helps Myst)
* [files/profile.c]
Handle ^Z as space. Found on CDROMS (helps Myst Installer).
* [multimedia/mmio.c]
mmio* partially updated to win32. No funny additions.
* [windows/driver.c]
Added win32 driver handling (will be used for win32 multimedia/
msvideo drivers).
* [win32/device.c]
Added device handling (K32OBJ_DEVICE_IOCTL). Implemented
VTDAPI.5 (used by win95' WINMM.timeGetTime())
Fri Jun 12 18:01:18 1998 Rein Klazes <rklazes@casema.net>
* [ole/compobj.c relay32/ole32.spec]
Add a stub for CoLockObjectExternal32.
* [objects/clipping.c]
Fix in IntersectClipRect(), when there is no initial clipping
region.
* [graphics/x11drv/graphics.c]
Corrected several "one-off" errors for the Ellipse, Rectangle
and RoundRectangle (especially small ones) draw routines.
Arc and friends still have to be done.
Fri Jun 12 06:23:19 1998 Matthew Becker <mbecker@glasscity.net>
* [misc/ntdll.c]
Fixed some of the parameter counts.
* [misc/registry.c]
General cleanup, documentation.
Standard keys are allowed to be 'closed' and succeed.
* [misc/shell.c]
Check for correct return values from Reg* functions.
* [win32/newfns.c]
Added stubs for OpenDesktopA, SetThreadDesktop, and
SetUserObjectInformationA.
Wed Jun 10 20:28:08 1998 James Juran <jrj120@psu.edu>
* [debugger/break.c]
Fixed bug introduced in 980503 that broke the -debug command
line option for PE executable files.
* [configure.in] [include/acconfig.h] [include/debugtools.h]
[documentation/debug-msgs]
Added 'configure' options to compile out debugging messages.
Use --disable-debug to disable all debugging messages, and
--disable-trace to just disable TRACE messages. This results
in a stripped executable that is 15-20% smaller. This option
is very much untested--don't expect it to work.
* [documentation/debug-msgs] [documentation/debugging]
Minor updates.
* [*/*.c]
Fixed some compile warnings. This also includes the
compile_warnings_trivial patch from WineHQ.
Tue Jun 10 22:00:18 1998 Eric Kohl <ekohl@abo.rhein-zeitung.de>
* [windows/sysmetrics.c][include/sysmetrics.h]
Fixed some Win95 values.
* [windows/nonclient.c][include/windows.h]
Fixed some Win95 drawing bugs.
Added extended window style flags (WS_EX_xxx).
* [misc/printdrv.c][relay32/winspool.spec]
Added stubs for DeletePrinterDriver32A, DeleteMonitor32A
and DeletePort32A.
* [windows/mdi.c][include/windows.h][relay32/user32.spec]
Added stubs for CascadeWindows and TileWindows.
* [controls/toolbar.c][include/toolbar.h]
Fixed a few bugs and implemented new features.
* [misc/shellord.c][relay32/shell32.spec]
Added stubs for SHELL32_60, SHELL32_61 and SHELL32_184.
* [controls/comctl32undoc.c][relay32/comctl32.spec]
New file comctl32undoc.c. Contains undocumented functions
of COMCTL32.DLL. These functions are needed to run EXPLORER.EXE
IEXPLORE.EXE and TASKMAN.EXE.
* [controls/status.c]
Added text alignment.
Tue Jun 8 22:00:00 1998 Bertho Stultiens <bertho@akhphd.au.dk>
* [programs/*/Makefile.in]
Changed the rules to use wrc as resource compiler but
passing the source through gcc first for macro expansion.
* [programs/*/*.rc]
Added #include "windows.h" for the resource compiler in the
appropriate files.
* [tools/wrc/wrc.[ch]] [tools/wrc/writeres.c]
Added commandline option -A for autoregister code.
Corrected the underscore problem by checking the proper define
from config.h.
Sun Jun 7 22:09:29 1998 Pascal Cuoq <pcuoq@ens-lyon.fr>
* [ole/ole2nls.c] [memory/string.c]
Improved LCMapString32A, and changed CompareString32A,
lstrcmp, lstrcmpi to use it.
Sat Jun 6 19:00:50 1998 Martin Strmberg <ams@ludd.luth.se>
* [include/winnt.h]
Added typedefs for security and tokens.
Sat Jun 6 12:26:31 1998 Morten Welinder <terra@diku.dk>
* [objects/text.c]
Use debugstr_an in DrawText16.
* [loader/resource.c]
Use debugres_w in FindResourceEx32W. Avoid crashing during
debug when wm is NULL.
* [if1632/relay.c]
In RELAY_DebugCallTo16, send output to the right place and
avoid side effects in macro arguments.
Wed Jun 3 20:56:03 1998 Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
* [controls/scroll.c] [windows/nonclient.c]
Fix several off by one errors in scrollbar painting.
Tue Jun 2 23:58:59 1998 Insomnia (Stea Greene) <insomnia@core.binghamton.edu>
* [graphics/dsound.c]
Rewrote mixer code to handle panning and volume for 16->16, 16->8,
8->16, and 8->8 bit mixes. Conforms to DirectX's "logarithmic
hearing scale" as specified in M$VC docs. Still does not handle
mixing of different frequencies (I am still working on that).
Tested 16->16 extensively with StarCraft. Other mixing combinations
untested but should work fine. Still kind of a work in progress,
so be warned.
Tue Jun 2 03:31:33 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [tools/wrc/utils.c]
dup_basename: fix to strip directory.
Mon Jun 1 20:00:00 1998 Juergen Schmied <juergen.schmied@metronet.de>
* [include/windows.h] [objects/cursoricon.c] [relay32/user32.spec]
Added stubs LoadCursorFromFileW and LoadCursorFromFileA.
1998-06-14 17:24:15 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* LUID_AND_ATTRIBUTES
|
|
|
|
*/
|
|
|
|
|
1999-09-19 16:20:33 +02:00
|
|
|
typedef union _LARGE_INTEGER {
|
|
|
|
struct {
|
2002-05-29 02:33:07 +02:00
|
|
|
#ifdef WORDS_BIGENDIAN
|
|
|
|
LONG HighPart;
|
|
|
|
DWORD LowPart;
|
|
|
|
#else
|
1999-09-19 16:20:33 +02:00
|
|
|
DWORD LowPart;
|
|
|
|
LONG HighPart;
|
2002-05-29 02:33:07 +02:00
|
|
|
#endif
|
2004-01-23 02:51:33 +01:00
|
|
|
} u;
|
|
|
|
#ifndef NONAMELESSSTRUCT
|
|
|
|
struct {
|
|
|
|
#ifdef WORDS_BIGENDIAN
|
|
|
|
LONG HighPart;
|
|
|
|
DWORD LowPart;
|
|
|
|
#else
|
|
|
|
DWORD LowPart;
|
|
|
|
LONG HighPart;
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
#endif
|
1999-09-19 16:20:33 +02:00
|
|
|
LONGLONG QuadPart;
|
2002-11-04 23:43:24 +01:00
|
|
|
} LARGE_INTEGER, *PLARGE_INTEGER;
|
1999-02-09 16:46:25 +01:00
|
|
|
|
1999-09-19 16:20:33 +02:00
|
|
|
typedef union _ULARGE_INTEGER {
|
|
|
|
struct {
|
2002-05-29 02:33:07 +02:00
|
|
|
#ifdef WORDS_BIGENDIAN
|
|
|
|
DWORD HighPart;
|
|
|
|
DWORD LowPart;
|
|
|
|
#else
|
1999-09-19 16:20:33 +02:00
|
|
|
DWORD LowPart;
|
2000-10-01 03:40:42 +02:00
|
|
|
DWORD HighPart;
|
2002-05-29 02:33:07 +02:00
|
|
|
#endif
|
2004-01-23 02:51:33 +01:00
|
|
|
} u;
|
|
|
|
#ifndef NONAMELESSSTRUCT
|
|
|
|
struct {
|
|
|
|
#ifdef WORDS_BIGENDIAN
|
|
|
|
DWORD HighPart;
|
|
|
|
DWORD LowPart;
|
|
|
|
#else
|
|
|
|
DWORD LowPart;
|
|
|
|
DWORD HighPart;
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
#endif
|
2000-10-01 03:40:42 +02:00
|
|
|
ULONGLONG QuadPart;
|
2002-11-04 23:43:24 +01:00
|
|
|
} ULARGE_INTEGER, *PULARGE_INTEGER;
|
1999-02-09 16:46:25 +01:00
|
|
|
|
1999-03-10 19:03:53 +01:00
|
|
|
/*
|
|
|
|
* Locally Unique Identifier
|
|
|
|
*/
|
|
|
|
|
2001-11-20 19:52:20 +01:00
|
|
|
typedef struct _LUID {
|
|
|
|
DWORD LowPart;
|
|
|
|
LONG HighPart;
|
|
|
|
} LUID, *PLUID;
|
1999-02-09 16:46:25 +01:00
|
|
|
|
2003-08-28 23:43:34 +02:00
|
|
|
#include <pshpack4.h>
|
Release 980614
Sun Jun 15 10:30:35 1998 Andreas Mohr <100.30936@germany.net>
* [files/dos_fs.c] [files/file.c] [if1632/wprocs.spec]
[misc/aspi.c]
Added support for scanners that need Adaptec's ASPI2DOS.
* [graphics/env.c] [misc/printerdrv.c] [graphics/win16drv/init.c]
[if1632/gdi.spec] [include/gdi.h]
Enhanced printer support (especially Win95):
Drv[GS]etPrinterData, [GS]etEnvironment; added AbortProc handling.
* [misc/tapi32.c] [relay32/tapi32.spec]
Added some stubs.
* [configure.in] [graphics/fontengine.c] [include/windows.h]
[misc/comm.c] [misc/w32skrnl.c] [misc/win32s16.c]
Made Wine compile on HP-UX (just for fun ;)
* [controls/menu.c] [include/windows.h]
Complete rewrite of EnableMenuItem32.
Free Agent 32 still doesn't work :(
* [misc/version.c] [if1632/kernel.spec] [include/winbase.h]
Implemented GetVersionEx16.
* [misc/network.c] [if1632/user.spec]
Fixed arguments of WNetGetPropertyText.
* [misc/version.c] [relay32/comctl32.spec] [relay32/oleaut32.spec]
Implemented COMCTL32_DllGetVersion, OaBuildVersion.
* [win32/file.c]
Fixed UNC handling of CreateFile32.
Sat Jun 13 22:35:12 1998 Douglas Ridgway <ridgway@winehq.com>
* [Makefile.in] [Make.rules.in]
Added pattern for CVS merge files to 'make clean'
* [ole/olecli.c] [windows/scroll.c] [windows/grahics.c]
Add some DC handle unlocking. (When hdc's are always unlocked,
they can be made moveable.)
* [documentation/wine.texinfo]
Started a Wine Design chapter with discussion of
graphics driver model.
Sat Jun 13 11:19:25 1998 David Luyer <luyer@ucs.uwa.edu.au>
* [misc/main.c] [relay32/relay386.c]
Added new option -debugmsg +relay=.... or -debugmsg -relay=...
Fri Jun 12 22:56:09 1998 Marcus Meissner <marcus@jet.franken.de>
* [relay32/snoop.c][relay32/builtin.c][loader/pe_image.c]
Added inter win32 dll snooping. Use -debugmsg +snoop.
Number of arguments and string references are autodetected.
Some small bugfixes in the PE loader.
* [misc/system.c]
Disabled SystemTimers. They do not work with the current
%fs handling in the 32->16 relaycode. (helps labview)
* [msdos/dpmi.c][msdos/int2f.c][files/drive.c]
Added a monoton linear increasing memory allocator for DPMI (required
for LabView, HAFAS, ...)
mscdex handling in emulated realmode interrupts (for mcicda.drv)
allocate logical drives only once. (helps Myst)
* [files/profile.c]
Handle ^Z as space. Found on CDROMS (helps Myst Installer).
* [multimedia/mmio.c]
mmio* partially updated to win32. No funny additions.
* [windows/driver.c]
Added win32 driver handling (will be used for win32 multimedia/
msvideo drivers).
* [win32/device.c]
Added device handling (K32OBJ_DEVICE_IOCTL). Implemented
VTDAPI.5 (used by win95' WINMM.timeGetTime())
Fri Jun 12 18:01:18 1998 Rein Klazes <rklazes@casema.net>
* [ole/compobj.c relay32/ole32.spec]
Add a stub for CoLockObjectExternal32.
* [objects/clipping.c]
Fix in IntersectClipRect(), when there is no initial clipping
region.
* [graphics/x11drv/graphics.c]
Corrected several "one-off" errors for the Ellipse, Rectangle
and RoundRectangle (especially small ones) draw routines.
Arc and friends still have to be done.
Fri Jun 12 06:23:19 1998 Matthew Becker <mbecker@glasscity.net>
* [misc/ntdll.c]
Fixed some of the parameter counts.
* [misc/registry.c]
General cleanup, documentation.
Standard keys are allowed to be 'closed' and succeed.
* [misc/shell.c]
Check for correct return values from Reg* functions.
* [win32/newfns.c]
Added stubs for OpenDesktopA, SetThreadDesktop, and
SetUserObjectInformationA.
Wed Jun 10 20:28:08 1998 James Juran <jrj120@psu.edu>
* [debugger/break.c]
Fixed bug introduced in 980503 that broke the -debug command
line option for PE executable files.
* [configure.in] [include/acconfig.h] [include/debugtools.h]
[documentation/debug-msgs]
Added 'configure' options to compile out debugging messages.
Use --disable-debug to disable all debugging messages, and
--disable-trace to just disable TRACE messages. This results
in a stripped executable that is 15-20% smaller. This option
is very much untested--don't expect it to work.
* [documentation/debug-msgs] [documentation/debugging]
Minor updates.
* [*/*.c]
Fixed some compile warnings. This also includes the
compile_warnings_trivial patch from WineHQ.
Tue Jun 10 22:00:18 1998 Eric Kohl <ekohl@abo.rhein-zeitung.de>
* [windows/sysmetrics.c][include/sysmetrics.h]
Fixed some Win95 values.
* [windows/nonclient.c][include/windows.h]
Fixed some Win95 drawing bugs.
Added extended window style flags (WS_EX_xxx).
* [misc/printdrv.c][relay32/winspool.spec]
Added stubs for DeletePrinterDriver32A, DeleteMonitor32A
and DeletePort32A.
* [windows/mdi.c][include/windows.h][relay32/user32.spec]
Added stubs for CascadeWindows and TileWindows.
* [controls/toolbar.c][include/toolbar.h]
Fixed a few bugs and implemented new features.
* [misc/shellord.c][relay32/shell32.spec]
Added stubs for SHELL32_60, SHELL32_61 and SHELL32_184.
* [controls/comctl32undoc.c][relay32/comctl32.spec]
New file comctl32undoc.c. Contains undocumented functions
of COMCTL32.DLL. These functions are needed to run EXPLORER.EXE
IEXPLORE.EXE and TASKMAN.EXE.
* [controls/status.c]
Added text alignment.
Tue Jun 8 22:00:00 1998 Bertho Stultiens <bertho@akhphd.au.dk>
* [programs/*/Makefile.in]
Changed the rules to use wrc as resource compiler but
passing the source through gcc first for macro expansion.
* [programs/*/*.rc]
Added #include "windows.h" for the resource compiler in the
appropriate files.
* [tools/wrc/wrc.[ch]] [tools/wrc/writeres.c]
Added commandline option -A for autoregister code.
Corrected the underscore problem by checking the proper define
from config.h.
Sun Jun 7 22:09:29 1998 Pascal Cuoq <pcuoq@ens-lyon.fr>
* [ole/ole2nls.c] [memory/string.c]
Improved LCMapString32A, and changed CompareString32A,
lstrcmp, lstrcmpi to use it.
Sat Jun 6 19:00:50 1998 Martin Strmberg <ams@ludd.luth.se>
* [include/winnt.h]
Added typedefs for security and tokens.
Sat Jun 6 12:26:31 1998 Morten Welinder <terra@diku.dk>
* [objects/text.c]
Use debugstr_an in DrawText16.
* [loader/resource.c]
Use debugres_w in FindResourceEx32W. Avoid crashing during
debug when wm is NULL.
* [if1632/relay.c]
In RELAY_DebugCallTo16, send output to the right place and
avoid side effects in macro arguments.
Wed Jun 3 20:56:03 1998 Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
* [controls/scroll.c] [windows/nonclient.c]
Fix several off by one errors in scrollbar painting.
Tue Jun 2 23:58:59 1998 Insomnia (Stea Greene) <insomnia@core.binghamton.edu>
* [graphics/dsound.c]
Rewrote mixer code to handle panning and volume for 16->16, 16->8,
8->16, and 8->8 bit mixes. Conforms to DirectX's "logarithmic
hearing scale" as specified in M$VC docs. Still does not handle
mixing of different frequencies (I am still working on that).
Tested 16->16 extensively with StarCraft. Other mixing combinations
untested but should work fine. Still kind of a work in progress,
so be warned.
Tue Jun 2 03:31:33 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [tools/wrc/utils.c]
dup_basename: fix to strip directory.
Mon Jun 1 20:00:00 1998 Juergen Schmied <juergen.schmied@metronet.de>
* [include/windows.h] [objects/cursoricon.c] [relay32/user32.spec]
Added stubs LoadCursorFromFileW and LoadCursorFromFileA.
1998-06-14 17:24:15 +02:00
|
|
|
typedef struct _LUID_AND_ATTRIBUTES {
|
2001-11-20 19:52:20 +01:00
|
|
|
LUID Luid;
|
|
|
|
DWORD Attributes;
|
Implemented RtlRandom, RtlAreAllAccessesGranted,
RtlAreAnyAccessesGranted, RtlCopyLuid, RtlEqualLuid, RtlMapGenericMask
and RtlCopyLuidAndAttributesArray.
Documentation updates for RtlExtendedMagicDivide, RtlUniform,
RtlUnicodeStringToAnsiString, RtlAppendAsciizToString,
RtlAppendStringToString, RtlAppendUnicodeToString and
RtlAppendUnicodeStringToString.
2003-04-08 02:55:36 +02:00
|
|
|
} LUID_AND_ATTRIBUTES, *PLUID_AND_ATTRIBUTES;
|
2003-08-28 23:43:34 +02:00
|
|
|
#include <poppack.h>
|
Release 980614
Sun Jun 15 10:30:35 1998 Andreas Mohr <100.30936@germany.net>
* [files/dos_fs.c] [files/file.c] [if1632/wprocs.spec]
[misc/aspi.c]
Added support for scanners that need Adaptec's ASPI2DOS.
* [graphics/env.c] [misc/printerdrv.c] [graphics/win16drv/init.c]
[if1632/gdi.spec] [include/gdi.h]
Enhanced printer support (especially Win95):
Drv[GS]etPrinterData, [GS]etEnvironment; added AbortProc handling.
* [misc/tapi32.c] [relay32/tapi32.spec]
Added some stubs.
* [configure.in] [graphics/fontengine.c] [include/windows.h]
[misc/comm.c] [misc/w32skrnl.c] [misc/win32s16.c]
Made Wine compile on HP-UX (just for fun ;)
* [controls/menu.c] [include/windows.h]
Complete rewrite of EnableMenuItem32.
Free Agent 32 still doesn't work :(
* [misc/version.c] [if1632/kernel.spec] [include/winbase.h]
Implemented GetVersionEx16.
* [misc/network.c] [if1632/user.spec]
Fixed arguments of WNetGetPropertyText.
* [misc/version.c] [relay32/comctl32.spec] [relay32/oleaut32.spec]
Implemented COMCTL32_DllGetVersion, OaBuildVersion.
* [win32/file.c]
Fixed UNC handling of CreateFile32.
Sat Jun 13 22:35:12 1998 Douglas Ridgway <ridgway@winehq.com>
* [Makefile.in] [Make.rules.in]
Added pattern for CVS merge files to 'make clean'
* [ole/olecli.c] [windows/scroll.c] [windows/grahics.c]
Add some DC handle unlocking. (When hdc's are always unlocked,
they can be made moveable.)
* [documentation/wine.texinfo]
Started a Wine Design chapter with discussion of
graphics driver model.
Sat Jun 13 11:19:25 1998 David Luyer <luyer@ucs.uwa.edu.au>
* [misc/main.c] [relay32/relay386.c]
Added new option -debugmsg +relay=.... or -debugmsg -relay=...
Fri Jun 12 22:56:09 1998 Marcus Meissner <marcus@jet.franken.de>
* [relay32/snoop.c][relay32/builtin.c][loader/pe_image.c]
Added inter win32 dll snooping. Use -debugmsg +snoop.
Number of arguments and string references are autodetected.
Some small bugfixes in the PE loader.
* [misc/system.c]
Disabled SystemTimers. They do not work with the current
%fs handling in the 32->16 relaycode. (helps labview)
* [msdos/dpmi.c][msdos/int2f.c][files/drive.c]
Added a monoton linear increasing memory allocator for DPMI (required
for LabView, HAFAS, ...)
mscdex handling in emulated realmode interrupts (for mcicda.drv)
allocate logical drives only once. (helps Myst)
* [files/profile.c]
Handle ^Z as space. Found on CDROMS (helps Myst Installer).
* [multimedia/mmio.c]
mmio* partially updated to win32. No funny additions.
* [windows/driver.c]
Added win32 driver handling (will be used for win32 multimedia/
msvideo drivers).
* [win32/device.c]
Added device handling (K32OBJ_DEVICE_IOCTL). Implemented
VTDAPI.5 (used by win95' WINMM.timeGetTime())
Fri Jun 12 18:01:18 1998 Rein Klazes <rklazes@casema.net>
* [ole/compobj.c relay32/ole32.spec]
Add a stub for CoLockObjectExternal32.
* [objects/clipping.c]
Fix in IntersectClipRect(), when there is no initial clipping
region.
* [graphics/x11drv/graphics.c]
Corrected several "one-off" errors for the Ellipse, Rectangle
and RoundRectangle (especially small ones) draw routines.
Arc and friends still have to be done.
Fri Jun 12 06:23:19 1998 Matthew Becker <mbecker@glasscity.net>
* [misc/ntdll.c]
Fixed some of the parameter counts.
* [misc/registry.c]
General cleanup, documentation.
Standard keys are allowed to be 'closed' and succeed.
* [misc/shell.c]
Check for correct return values from Reg* functions.
* [win32/newfns.c]
Added stubs for OpenDesktopA, SetThreadDesktop, and
SetUserObjectInformationA.
Wed Jun 10 20:28:08 1998 James Juran <jrj120@psu.edu>
* [debugger/break.c]
Fixed bug introduced in 980503 that broke the -debug command
line option for PE executable files.
* [configure.in] [include/acconfig.h] [include/debugtools.h]
[documentation/debug-msgs]
Added 'configure' options to compile out debugging messages.
Use --disable-debug to disable all debugging messages, and
--disable-trace to just disable TRACE messages. This results
in a stripped executable that is 15-20% smaller. This option
is very much untested--don't expect it to work.
* [documentation/debug-msgs] [documentation/debugging]
Minor updates.
* [*/*.c]
Fixed some compile warnings. This also includes the
compile_warnings_trivial patch from WineHQ.
Tue Jun 10 22:00:18 1998 Eric Kohl <ekohl@abo.rhein-zeitung.de>
* [windows/sysmetrics.c][include/sysmetrics.h]
Fixed some Win95 values.
* [windows/nonclient.c][include/windows.h]
Fixed some Win95 drawing bugs.
Added extended window style flags (WS_EX_xxx).
* [misc/printdrv.c][relay32/winspool.spec]
Added stubs for DeletePrinterDriver32A, DeleteMonitor32A
and DeletePort32A.
* [windows/mdi.c][include/windows.h][relay32/user32.spec]
Added stubs for CascadeWindows and TileWindows.
* [controls/toolbar.c][include/toolbar.h]
Fixed a few bugs and implemented new features.
* [misc/shellord.c][relay32/shell32.spec]
Added stubs for SHELL32_60, SHELL32_61 and SHELL32_184.
* [controls/comctl32undoc.c][relay32/comctl32.spec]
New file comctl32undoc.c. Contains undocumented functions
of COMCTL32.DLL. These functions are needed to run EXPLORER.EXE
IEXPLORE.EXE and TASKMAN.EXE.
* [controls/status.c]
Added text alignment.
Tue Jun 8 22:00:00 1998 Bertho Stultiens <bertho@akhphd.au.dk>
* [programs/*/Makefile.in]
Changed the rules to use wrc as resource compiler but
passing the source through gcc first for macro expansion.
* [programs/*/*.rc]
Added #include "windows.h" for the resource compiler in the
appropriate files.
* [tools/wrc/wrc.[ch]] [tools/wrc/writeres.c]
Added commandline option -A for autoregister code.
Corrected the underscore problem by checking the proper define
from config.h.
Sun Jun 7 22:09:29 1998 Pascal Cuoq <pcuoq@ens-lyon.fr>
* [ole/ole2nls.c] [memory/string.c]
Improved LCMapString32A, and changed CompareString32A,
lstrcmp, lstrcmpi to use it.
Sat Jun 6 19:00:50 1998 Martin Strmberg <ams@ludd.luth.se>
* [include/winnt.h]
Added typedefs for security and tokens.
Sat Jun 6 12:26:31 1998 Morten Welinder <terra@diku.dk>
* [objects/text.c]
Use debugstr_an in DrawText16.
* [loader/resource.c]
Use debugres_w in FindResourceEx32W. Avoid crashing during
debug when wm is NULL.
* [if1632/relay.c]
In RELAY_DebugCallTo16, send output to the right place and
avoid side effects in macro arguments.
Wed Jun 3 20:56:03 1998 Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
* [controls/scroll.c] [windows/nonclient.c]
Fix several off by one errors in scrollbar painting.
Tue Jun 2 23:58:59 1998 Insomnia (Stea Greene) <insomnia@core.binghamton.edu>
* [graphics/dsound.c]
Rewrote mixer code to handle panning and volume for 16->16, 16->8,
8->16, and 8->8 bit mixes. Conforms to DirectX's "logarithmic
hearing scale" as specified in M$VC docs. Still does not handle
mixing of different frequencies (I am still working on that).
Tested 16->16 extensively with StarCraft. Other mixing combinations
untested but should work fine. Still kind of a work in progress,
so be warned.
Tue Jun 2 03:31:33 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [tools/wrc/utils.c]
dup_basename: fix to strip directory.
Mon Jun 1 20:00:00 1998 Juergen Schmied <juergen.schmied@metronet.de>
* [include/windows.h] [objects/cursoricon.c] [relay32/user32.spec]
Added stubs LoadCursorFromFileW and LoadCursorFromFileA.
1998-06-14 17:24:15 +02:00
|
|
|
|
1999-07-04 13:01:21 +02:00
|
|
|
/*
|
|
|
|
* PRIVILEGE_SET
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef struct _PRIVILEGE_SET {
|
|
|
|
DWORD PrivilegeCount;
|
|
|
|
DWORD Control;
|
|
|
|
LUID_AND_ATTRIBUTES Privilege[ANYSIZE_ARRAY];
|
|
|
|
} PRIVILEGE_SET, *PPRIVILEGE_SET;
|
|
|
|
|
Release 980614
Sun Jun 15 10:30:35 1998 Andreas Mohr <100.30936@germany.net>
* [files/dos_fs.c] [files/file.c] [if1632/wprocs.spec]
[misc/aspi.c]
Added support for scanners that need Adaptec's ASPI2DOS.
* [graphics/env.c] [misc/printerdrv.c] [graphics/win16drv/init.c]
[if1632/gdi.spec] [include/gdi.h]
Enhanced printer support (especially Win95):
Drv[GS]etPrinterData, [GS]etEnvironment; added AbortProc handling.
* [misc/tapi32.c] [relay32/tapi32.spec]
Added some stubs.
* [configure.in] [graphics/fontengine.c] [include/windows.h]
[misc/comm.c] [misc/w32skrnl.c] [misc/win32s16.c]
Made Wine compile on HP-UX (just for fun ;)
* [controls/menu.c] [include/windows.h]
Complete rewrite of EnableMenuItem32.
Free Agent 32 still doesn't work :(
* [misc/version.c] [if1632/kernel.spec] [include/winbase.h]
Implemented GetVersionEx16.
* [misc/network.c] [if1632/user.spec]
Fixed arguments of WNetGetPropertyText.
* [misc/version.c] [relay32/comctl32.spec] [relay32/oleaut32.spec]
Implemented COMCTL32_DllGetVersion, OaBuildVersion.
* [win32/file.c]
Fixed UNC handling of CreateFile32.
Sat Jun 13 22:35:12 1998 Douglas Ridgway <ridgway@winehq.com>
* [Makefile.in] [Make.rules.in]
Added pattern for CVS merge files to 'make clean'
* [ole/olecli.c] [windows/scroll.c] [windows/grahics.c]
Add some DC handle unlocking. (When hdc's are always unlocked,
they can be made moveable.)
* [documentation/wine.texinfo]
Started a Wine Design chapter with discussion of
graphics driver model.
Sat Jun 13 11:19:25 1998 David Luyer <luyer@ucs.uwa.edu.au>
* [misc/main.c] [relay32/relay386.c]
Added new option -debugmsg +relay=.... or -debugmsg -relay=...
Fri Jun 12 22:56:09 1998 Marcus Meissner <marcus@jet.franken.de>
* [relay32/snoop.c][relay32/builtin.c][loader/pe_image.c]
Added inter win32 dll snooping. Use -debugmsg +snoop.
Number of arguments and string references are autodetected.
Some small bugfixes in the PE loader.
* [misc/system.c]
Disabled SystemTimers. They do not work with the current
%fs handling in the 32->16 relaycode. (helps labview)
* [msdos/dpmi.c][msdos/int2f.c][files/drive.c]
Added a monoton linear increasing memory allocator for DPMI (required
for LabView, HAFAS, ...)
mscdex handling in emulated realmode interrupts (for mcicda.drv)
allocate logical drives only once. (helps Myst)
* [files/profile.c]
Handle ^Z as space. Found on CDROMS (helps Myst Installer).
* [multimedia/mmio.c]
mmio* partially updated to win32. No funny additions.
* [windows/driver.c]
Added win32 driver handling (will be used for win32 multimedia/
msvideo drivers).
* [win32/device.c]
Added device handling (K32OBJ_DEVICE_IOCTL). Implemented
VTDAPI.5 (used by win95' WINMM.timeGetTime())
Fri Jun 12 18:01:18 1998 Rein Klazes <rklazes@casema.net>
* [ole/compobj.c relay32/ole32.spec]
Add a stub for CoLockObjectExternal32.
* [objects/clipping.c]
Fix in IntersectClipRect(), when there is no initial clipping
region.
* [graphics/x11drv/graphics.c]
Corrected several "one-off" errors for the Ellipse, Rectangle
and RoundRectangle (especially small ones) draw routines.
Arc and friends still have to be done.
Fri Jun 12 06:23:19 1998 Matthew Becker <mbecker@glasscity.net>
* [misc/ntdll.c]
Fixed some of the parameter counts.
* [misc/registry.c]
General cleanup, documentation.
Standard keys are allowed to be 'closed' and succeed.
* [misc/shell.c]
Check for correct return values from Reg* functions.
* [win32/newfns.c]
Added stubs for OpenDesktopA, SetThreadDesktop, and
SetUserObjectInformationA.
Wed Jun 10 20:28:08 1998 James Juran <jrj120@psu.edu>
* [debugger/break.c]
Fixed bug introduced in 980503 that broke the -debug command
line option for PE executable files.
* [configure.in] [include/acconfig.h] [include/debugtools.h]
[documentation/debug-msgs]
Added 'configure' options to compile out debugging messages.
Use --disable-debug to disable all debugging messages, and
--disable-trace to just disable TRACE messages. This results
in a stripped executable that is 15-20% smaller. This option
is very much untested--don't expect it to work.
* [documentation/debug-msgs] [documentation/debugging]
Minor updates.
* [*/*.c]
Fixed some compile warnings. This also includes the
compile_warnings_trivial patch from WineHQ.
Tue Jun 10 22:00:18 1998 Eric Kohl <ekohl@abo.rhein-zeitung.de>
* [windows/sysmetrics.c][include/sysmetrics.h]
Fixed some Win95 values.
* [windows/nonclient.c][include/windows.h]
Fixed some Win95 drawing bugs.
Added extended window style flags (WS_EX_xxx).
* [misc/printdrv.c][relay32/winspool.spec]
Added stubs for DeletePrinterDriver32A, DeleteMonitor32A
and DeletePort32A.
* [windows/mdi.c][include/windows.h][relay32/user32.spec]
Added stubs for CascadeWindows and TileWindows.
* [controls/toolbar.c][include/toolbar.h]
Fixed a few bugs and implemented new features.
* [misc/shellord.c][relay32/shell32.spec]
Added stubs for SHELL32_60, SHELL32_61 and SHELL32_184.
* [controls/comctl32undoc.c][relay32/comctl32.spec]
New file comctl32undoc.c. Contains undocumented functions
of COMCTL32.DLL. These functions are needed to run EXPLORER.EXE
IEXPLORE.EXE and TASKMAN.EXE.
* [controls/status.c]
Added text alignment.
Tue Jun 8 22:00:00 1998 Bertho Stultiens <bertho@akhphd.au.dk>
* [programs/*/Makefile.in]
Changed the rules to use wrc as resource compiler but
passing the source through gcc first for macro expansion.
* [programs/*/*.rc]
Added #include "windows.h" for the resource compiler in the
appropriate files.
* [tools/wrc/wrc.[ch]] [tools/wrc/writeres.c]
Added commandline option -A for autoregister code.
Corrected the underscore problem by checking the proper define
from config.h.
Sun Jun 7 22:09:29 1998 Pascal Cuoq <pcuoq@ens-lyon.fr>
* [ole/ole2nls.c] [memory/string.c]
Improved LCMapString32A, and changed CompareString32A,
lstrcmp, lstrcmpi to use it.
Sat Jun 6 19:00:50 1998 Martin Strmberg <ams@ludd.luth.se>
* [include/winnt.h]
Added typedefs for security and tokens.
Sat Jun 6 12:26:31 1998 Morten Welinder <terra@diku.dk>
* [objects/text.c]
Use debugstr_an in DrawText16.
* [loader/resource.c]
Use debugres_w in FindResourceEx32W. Avoid crashing during
debug when wm is NULL.
* [if1632/relay.c]
In RELAY_DebugCallTo16, send output to the right place and
avoid side effects in macro arguments.
Wed Jun 3 20:56:03 1998 Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
* [controls/scroll.c] [windows/nonclient.c]
Fix several off by one errors in scrollbar painting.
Tue Jun 2 23:58:59 1998 Insomnia (Stea Greene) <insomnia@core.binghamton.edu>
* [graphics/dsound.c]
Rewrote mixer code to handle panning and volume for 16->16, 16->8,
8->16, and 8->8 bit mixes. Conforms to DirectX's "logarithmic
hearing scale" as specified in M$VC docs. Still does not handle
mixing of different frequencies (I am still working on that).
Tested 16->16 extensively with StarCraft. Other mixing combinations
untested but should work fine. Still kind of a work in progress,
so be warned.
Tue Jun 2 03:31:33 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [tools/wrc/utils.c]
dup_basename: fix to strip directory.
Mon Jun 1 20:00:00 1998 Juergen Schmied <juergen.schmied@metronet.de>
* [include/windows.h] [objects/cursoricon.c] [relay32/user32.spec]
Added stubs LoadCursorFromFileW and LoadCursorFromFileA.
1998-06-14 17:24:15 +02:00
|
|
|
/*
|
|
|
|
* TOKEN_PRIVILEGES
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef struct _TOKEN_PRIVILEGES {
|
2002-06-01 01:06:46 +02:00
|
|
|
DWORD PrivilegeCount;
|
|
|
|
LUID_AND_ATTRIBUTES Privileges[ANYSIZE_ARRAY];
|
|
|
|
} TOKEN_PRIVILEGES, *PTOKEN_PRIVILEGES;
|
Release 980614
Sun Jun 15 10:30:35 1998 Andreas Mohr <100.30936@germany.net>
* [files/dos_fs.c] [files/file.c] [if1632/wprocs.spec]
[misc/aspi.c]
Added support for scanners that need Adaptec's ASPI2DOS.
* [graphics/env.c] [misc/printerdrv.c] [graphics/win16drv/init.c]
[if1632/gdi.spec] [include/gdi.h]
Enhanced printer support (especially Win95):
Drv[GS]etPrinterData, [GS]etEnvironment; added AbortProc handling.
* [misc/tapi32.c] [relay32/tapi32.spec]
Added some stubs.
* [configure.in] [graphics/fontengine.c] [include/windows.h]
[misc/comm.c] [misc/w32skrnl.c] [misc/win32s16.c]
Made Wine compile on HP-UX (just for fun ;)
* [controls/menu.c] [include/windows.h]
Complete rewrite of EnableMenuItem32.
Free Agent 32 still doesn't work :(
* [misc/version.c] [if1632/kernel.spec] [include/winbase.h]
Implemented GetVersionEx16.
* [misc/network.c] [if1632/user.spec]
Fixed arguments of WNetGetPropertyText.
* [misc/version.c] [relay32/comctl32.spec] [relay32/oleaut32.spec]
Implemented COMCTL32_DllGetVersion, OaBuildVersion.
* [win32/file.c]
Fixed UNC handling of CreateFile32.
Sat Jun 13 22:35:12 1998 Douglas Ridgway <ridgway@winehq.com>
* [Makefile.in] [Make.rules.in]
Added pattern for CVS merge files to 'make clean'
* [ole/olecli.c] [windows/scroll.c] [windows/grahics.c]
Add some DC handle unlocking. (When hdc's are always unlocked,
they can be made moveable.)
* [documentation/wine.texinfo]
Started a Wine Design chapter with discussion of
graphics driver model.
Sat Jun 13 11:19:25 1998 David Luyer <luyer@ucs.uwa.edu.au>
* [misc/main.c] [relay32/relay386.c]
Added new option -debugmsg +relay=.... or -debugmsg -relay=...
Fri Jun 12 22:56:09 1998 Marcus Meissner <marcus@jet.franken.de>
* [relay32/snoop.c][relay32/builtin.c][loader/pe_image.c]
Added inter win32 dll snooping. Use -debugmsg +snoop.
Number of arguments and string references are autodetected.
Some small bugfixes in the PE loader.
* [misc/system.c]
Disabled SystemTimers. They do not work with the current
%fs handling in the 32->16 relaycode. (helps labview)
* [msdos/dpmi.c][msdos/int2f.c][files/drive.c]
Added a monoton linear increasing memory allocator for DPMI (required
for LabView, HAFAS, ...)
mscdex handling in emulated realmode interrupts (for mcicda.drv)
allocate logical drives only once. (helps Myst)
* [files/profile.c]
Handle ^Z as space. Found on CDROMS (helps Myst Installer).
* [multimedia/mmio.c]
mmio* partially updated to win32. No funny additions.
* [windows/driver.c]
Added win32 driver handling (will be used for win32 multimedia/
msvideo drivers).
* [win32/device.c]
Added device handling (K32OBJ_DEVICE_IOCTL). Implemented
VTDAPI.5 (used by win95' WINMM.timeGetTime())
Fri Jun 12 18:01:18 1998 Rein Klazes <rklazes@casema.net>
* [ole/compobj.c relay32/ole32.spec]
Add a stub for CoLockObjectExternal32.
* [objects/clipping.c]
Fix in IntersectClipRect(), when there is no initial clipping
region.
* [graphics/x11drv/graphics.c]
Corrected several "one-off" errors for the Ellipse, Rectangle
and RoundRectangle (especially small ones) draw routines.
Arc and friends still have to be done.
Fri Jun 12 06:23:19 1998 Matthew Becker <mbecker@glasscity.net>
* [misc/ntdll.c]
Fixed some of the parameter counts.
* [misc/registry.c]
General cleanup, documentation.
Standard keys are allowed to be 'closed' and succeed.
* [misc/shell.c]
Check for correct return values from Reg* functions.
* [win32/newfns.c]
Added stubs for OpenDesktopA, SetThreadDesktop, and
SetUserObjectInformationA.
Wed Jun 10 20:28:08 1998 James Juran <jrj120@psu.edu>
* [debugger/break.c]
Fixed bug introduced in 980503 that broke the -debug command
line option for PE executable files.
* [configure.in] [include/acconfig.h] [include/debugtools.h]
[documentation/debug-msgs]
Added 'configure' options to compile out debugging messages.
Use --disable-debug to disable all debugging messages, and
--disable-trace to just disable TRACE messages. This results
in a stripped executable that is 15-20% smaller. This option
is very much untested--don't expect it to work.
* [documentation/debug-msgs] [documentation/debugging]
Minor updates.
* [*/*.c]
Fixed some compile warnings. This also includes the
compile_warnings_trivial patch from WineHQ.
Tue Jun 10 22:00:18 1998 Eric Kohl <ekohl@abo.rhein-zeitung.de>
* [windows/sysmetrics.c][include/sysmetrics.h]
Fixed some Win95 values.
* [windows/nonclient.c][include/windows.h]
Fixed some Win95 drawing bugs.
Added extended window style flags (WS_EX_xxx).
* [misc/printdrv.c][relay32/winspool.spec]
Added stubs for DeletePrinterDriver32A, DeleteMonitor32A
and DeletePort32A.
* [windows/mdi.c][include/windows.h][relay32/user32.spec]
Added stubs for CascadeWindows and TileWindows.
* [controls/toolbar.c][include/toolbar.h]
Fixed a few bugs and implemented new features.
* [misc/shellord.c][relay32/shell32.spec]
Added stubs for SHELL32_60, SHELL32_61 and SHELL32_184.
* [controls/comctl32undoc.c][relay32/comctl32.spec]
New file comctl32undoc.c. Contains undocumented functions
of COMCTL32.DLL. These functions are needed to run EXPLORER.EXE
IEXPLORE.EXE and TASKMAN.EXE.
* [controls/status.c]
Added text alignment.
Tue Jun 8 22:00:00 1998 Bertho Stultiens <bertho@akhphd.au.dk>
* [programs/*/Makefile.in]
Changed the rules to use wrc as resource compiler but
passing the source through gcc first for macro expansion.
* [programs/*/*.rc]
Added #include "windows.h" for the resource compiler in the
appropriate files.
* [tools/wrc/wrc.[ch]] [tools/wrc/writeres.c]
Added commandline option -A for autoregister code.
Corrected the underscore problem by checking the proper define
from config.h.
Sun Jun 7 22:09:29 1998 Pascal Cuoq <pcuoq@ens-lyon.fr>
* [ole/ole2nls.c] [memory/string.c]
Improved LCMapString32A, and changed CompareString32A,
lstrcmp, lstrcmpi to use it.
Sat Jun 6 19:00:50 1998 Martin Strmberg <ams@ludd.luth.se>
* [include/winnt.h]
Added typedefs for security and tokens.
Sat Jun 6 12:26:31 1998 Morten Welinder <terra@diku.dk>
* [objects/text.c]
Use debugstr_an in DrawText16.
* [loader/resource.c]
Use debugres_w in FindResourceEx32W. Avoid crashing during
debug when wm is NULL.
* [if1632/relay.c]
In RELAY_DebugCallTo16, send output to the right place and
avoid side effects in macro arguments.
Wed Jun 3 20:56:03 1998 Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
* [controls/scroll.c] [windows/nonclient.c]
Fix several off by one errors in scrollbar painting.
Tue Jun 2 23:58:59 1998 Insomnia (Stea Greene) <insomnia@core.binghamton.edu>
* [graphics/dsound.c]
Rewrote mixer code to handle panning and volume for 16->16, 16->8,
8->16, and 8->8 bit mixes. Conforms to DirectX's "logarithmic
hearing scale" as specified in M$VC docs. Still does not handle
mixing of different frequencies (I am still working on that).
Tested 16->16 extensively with StarCraft. Other mixing combinations
untested but should work fine. Still kind of a work in progress,
so be warned.
Tue Jun 2 03:31:33 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [tools/wrc/utils.c]
dup_basename: fix to strip directory.
Mon Jun 1 20:00:00 1998 Juergen Schmied <juergen.schmied@metronet.de>
* [include/windows.h] [objects/cursoricon.c] [relay32/user32.spec]
Added stubs LoadCursorFromFileW and LoadCursorFromFileA.
1998-06-14 17:24:15 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* TOKEN_OWNER
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef struct _TOKEN_OWNER {
|
2002-06-01 01:06:46 +02:00
|
|
|
PSID Owner;
|
2005-05-06 17:38:22 +02:00
|
|
|
} TOKEN_OWNER, *PTOKEN_OWNER;
|
Release 980614
Sun Jun 15 10:30:35 1998 Andreas Mohr <100.30936@germany.net>
* [files/dos_fs.c] [files/file.c] [if1632/wprocs.spec]
[misc/aspi.c]
Added support for scanners that need Adaptec's ASPI2DOS.
* [graphics/env.c] [misc/printerdrv.c] [graphics/win16drv/init.c]
[if1632/gdi.spec] [include/gdi.h]
Enhanced printer support (especially Win95):
Drv[GS]etPrinterData, [GS]etEnvironment; added AbortProc handling.
* [misc/tapi32.c] [relay32/tapi32.spec]
Added some stubs.
* [configure.in] [graphics/fontengine.c] [include/windows.h]
[misc/comm.c] [misc/w32skrnl.c] [misc/win32s16.c]
Made Wine compile on HP-UX (just for fun ;)
* [controls/menu.c] [include/windows.h]
Complete rewrite of EnableMenuItem32.
Free Agent 32 still doesn't work :(
* [misc/version.c] [if1632/kernel.spec] [include/winbase.h]
Implemented GetVersionEx16.
* [misc/network.c] [if1632/user.spec]
Fixed arguments of WNetGetPropertyText.
* [misc/version.c] [relay32/comctl32.spec] [relay32/oleaut32.spec]
Implemented COMCTL32_DllGetVersion, OaBuildVersion.
* [win32/file.c]
Fixed UNC handling of CreateFile32.
Sat Jun 13 22:35:12 1998 Douglas Ridgway <ridgway@winehq.com>
* [Makefile.in] [Make.rules.in]
Added pattern for CVS merge files to 'make clean'
* [ole/olecli.c] [windows/scroll.c] [windows/grahics.c]
Add some DC handle unlocking. (When hdc's are always unlocked,
they can be made moveable.)
* [documentation/wine.texinfo]
Started a Wine Design chapter with discussion of
graphics driver model.
Sat Jun 13 11:19:25 1998 David Luyer <luyer@ucs.uwa.edu.au>
* [misc/main.c] [relay32/relay386.c]
Added new option -debugmsg +relay=.... or -debugmsg -relay=...
Fri Jun 12 22:56:09 1998 Marcus Meissner <marcus@jet.franken.de>
* [relay32/snoop.c][relay32/builtin.c][loader/pe_image.c]
Added inter win32 dll snooping. Use -debugmsg +snoop.
Number of arguments and string references are autodetected.
Some small bugfixes in the PE loader.
* [misc/system.c]
Disabled SystemTimers. They do not work with the current
%fs handling in the 32->16 relaycode. (helps labview)
* [msdos/dpmi.c][msdos/int2f.c][files/drive.c]
Added a monoton linear increasing memory allocator for DPMI (required
for LabView, HAFAS, ...)
mscdex handling in emulated realmode interrupts (for mcicda.drv)
allocate logical drives only once. (helps Myst)
* [files/profile.c]
Handle ^Z as space. Found on CDROMS (helps Myst Installer).
* [multimedia/mmio.c]
mmio* partially updated to win32. No funny additions.
* [windows/driver.c]
Added win32 driver handling (will be used for win32 multimedia/
msvideo drivers).
* [win32/device.c]
Added device handling (K32OBJ_DEVICE_IOCTL). Implemented
VTDAPI.5 (used by win95' WINMM.timeGetTime())
Fri Jun 12 18:01:18 1998 Rein Klazes <rklazes@casema.net>
* [ole/compobj.c relay32/ole32.spec]
Add a stub for CoLockObjectExternal32.
* [objects/clipping.c]
Fix in IntersectClipRect(), when there is no initial clipping
region.
* [graphics/x11drv/graphics.c]
Corrected several "one-off" errors for the Ellipse, Rectangle
and RoundRectangle (especially small ones) draw routines.
Arc and friends still have to be done.
Fri Jun 12 06:23:19 1998 Matthew Becker <mbecker@glasscity.net>
* [misc/ntdll.c]
Fixed some of the parameter counts.
* [misc/registry.c]
General cleanup, documentation.
Standard keys are allowed to be 'closed' and succeed.
* [misc/shell.c]
Check for correct return values from Reg* functions.
* [win32/newfns.c]
Added stubs for OpenDesktopA, SetThreadDesktop, and
SetUserObjectInformationA.
Wed Jun 10 20:28:08 1998 James Juran <jrj120@psu.edu>
* [debugger/break.c]
Fixed bug introduced in 980503 that broke the -debug command
line option for PE executable files.
* [configure.in] [include/acconfig.h] [include/debugtools.h]
[documentation/debug-msgs]
Added 'configure' options to compile out debugging messages.
Use --disable-debug to disable all debugging messages, and
--disable-trace to just disable TRACE messages. This results
in a stripped executable that is 15-20% smaller. This option
is very much untested--don't expect it to work.
* [documentation/debug-msgs] [documentation/debugging]
Minor updates.
* [*/*.c]
Fixed some compile warnings. This also includes the
compile_warnings_trivial patch from WineHQ.
Tue Jun 10 22:00:18 1998 Eric Kohl <ekohl@abo.rhein-zeitung.de>
* [windows/sysmetrics.c][include/sysmetrics.h]
Fixed some Win95 values.
* [windows/nonclient.c][include/windows.h]
Fixed some Win95 drawing bugs.
Added extended window style flags (WS_EX_xxx).
* [misc/printdrv.c][relay32/winspool.spec]
Added stubs for DeletePrinterDriver32A, DeleteMonitor32A
and DeletePort32A.
* [windows/mdi.c][include/windows.h][relay32/user32.spec]
Added stubs for CascadeWindows and TileWindows.
* [controls/toolbar.c][include/toolbar.h]
Fixed a few bugs and implemented new features.
* [misc/shellord.c][relay32/shell32.spec]
Added stubs for SHELL32_60, SHELL32_61 and SHELL32_184.
* [controls/comctl32undoc.c][relay32/comctl32.spec]
New file comctl32undoc.c. Contains undocumented functions
of COMCTL32.DLL. These functions are needed to run EXPLORER.EXE
IEXPLORE.EXE and TASKMAN.EXE.
* [controls/status.c]
Added text alignment.
Tue Jun 8 22:00:00 1998 Bertho Stultiens <bertho@akhphd.au.dk>
* [programs/*/Makefile.in]
Changed the rules to use wrc as resource compiler but
passing the source through gcc first for macro expansion.
* [programs/*/*.rc]
Added #include "windows.h" for the resource compiler in the
appropriate files.
* [tools/wrc/wrc.[ch]] [tools/wrc/writeres.c]
Added commandline option -A for autoregister code.
Corrected the underscore problem by checking the proper define
from config.h.
Sun Jun 7 22:09:29 1998 Pascal Cuoq <pcuoq@ens-lyon.fr>
* [ole/ole2nls.c] [memory/string.c]
Improved LCMapString32A, and changed CompareString32A,
lstrcmp, lstrcmpi to use it.
Sat Jun 6 19:00:50 1998 Martin Strmberg <ams@ludd.luth.se>
* [include/winnt.h]
Added typedefs for security and tokens.
Sat Jun 6 12:26:31 1998 Morten Welinder <terra@diku.dk>
* [objects/text.c]
Use debugstr_an in DrawText16.
* [loader/resource.c]
Use debugres_w in FindResourceEx32W. Avoid crashing during
debug when wm is NULL.
* [if1632/relay.c]
In RELAY_DebugCallTo16, send output to the right place and
avoid side effects in macro arguments.
Wed Jun 3 20:56:03 1998 Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
* [controls/scroll.c] [windows/nonclient.c]
Fix several off by one errors in scrollbar painting.
Tue Jun 2 23:58:59 1998 Insomnia (Stea Greene) <insomnia@core.binghamton.edu>
* [graphics/dsound.c]
Rewrote mixer code to handle panning and volume for 16->16, 16->8,
8->16, and 8->8 bit mixes. Conforms to DirectX's "logarithmic
hearing scale" as specified in M$VC docs. Still does not handle
mixing of different frequencies (I am still working on that).
Tested 16->16 extensively with StarCraft. Other mixing combinations
untested but should work fine. Still kind of a work in progress,
so be warned.
Tue Jun 2 03:31:33 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [tools/wrc/utils.c]
dup_basename: fix to strip directory.
Mon Jun 1 20:00:00 1998 Juergen Schmied <juergen.schmied@metronet.de>
* [include/windows.h] [objects/cursoricon.c] [relay32/user32.spec]
Added stubs LoadCursorFromFileW and LoadCursorFromFileA.
1998-06-14 17:24:15 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* TOKEN_PRIMARY_GROUP
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef struct _TOKEN_PRIMARY_GROUP {
|
2002-06-01 01:06:46 +02:00
|
|
|
PSID PrimaryGroup;
|
2005-06-27 13:09:42 +02:00
|
|
|
} TOKEN_PRIMARY_GROUP, *PTOKEN_PRIMARY_GROUP;
|
Release 980614
Sun Jun 15 10:30:35 1998 Andreas Mohr <100.30936@germany.net>
* [files/dos_fs.c] [files/file.c] [if1632/wprocs.spec]
[misc/aspi.c]
Added support for scanners that need Adaptec's ASPI2DOS.
* [graphics/env.c] [misc/printerdrv.c] [graphics/win16drv/init.c]
[if1632/gdi.spec] [include/gdi.h]
Enhanced printer support (especially Win95):
Drv[GS]etPrinterData, [GS]etEnvironment; added AbortProc handling.
* [misc/tapi32.c] [relay32/tapi32.spec]
Added some stubs.
* [configure.in] [graphics/fontengine.c] [include/windows.h]
[misc/comm.c] [misc/w32skrnl.c] [misc/win32s16.c]
Made Wine compile on HP-UX (just for fun ;)
* [controls/menu.c] [include/windows.h]
Complete rewrite of EnableMenuItem32.
Free Agent 32 still doesn't work :(
* [misc/version.c] [if1632/kernel.spec] [include/winbase.h]
Implemented GetVersionEx16.
* [misc/network.c] [if1632/user.spec]
Fixed arguments of WNetGetPropertyText.
* [misc/version.c] [relay32/comctl32.spec] [relay32/oleaut32.spec]
Implemented COMCTL32_DllGetVersion, OaBuildVersion.
* [win32/file.c]
Fixed UNC handling of CreateFile32.
Sat Jun 13 22:35:12 1998 Douglas Ridgway <ridgway@winehq.com>
* [Makefile.in] [Make.rules.in]
Added pattern for CVS merge files to 'make clean'
* [ole/olecli.c] [windows/scroll.c] [windows/grahics.c]
Add some DC handle unlocking. (When hdc's are always unlocked,
they can be made moveable.)
* [documentation/wine.texinfo]
Started a Wine Design chapter with discussion of
graphics driver model.
Sat Jun 13 11:19:25 1998 David Luyer <luyer@ucs.uwa.edu.au>
* [misc/main.c] [relay32/relay386.c]
Added new option -debugmsg +relay=.... or -debugmsg -relay=...
Fri Jun 12 22:56:09 1998 Marcus Meissner <marcus@jet.franken.de>
* [relay32/snoop.c][relay32/builtin.c][loader/pe_image.c]
Added inter win32 dll snooping. Use -debugmsg +snoop.
Number of arguments and string references are autodetected.
Some small bugfixes in the PE loader.
* [misc/system.c]
Disabled SystemTimers. They do not work with the current
%fs handling in the 32->16 relaycode. (helps labview)
* [msdos/dpmi.c][msdos/int2f.c][files/drive.c]
Added a monoton linear increasing memory allocator for DPMI (required
for LabView, HAFAS, ...)
mscdex handling in emulated realmode interrupts (for mcicda.drv)
allocate logical drives only once. (helps Myst)
* [files/profile.c]
Handle ^Z as space. Found on CDROMS (helps Myst Installer).
* [multimedia/mmio.c]
mmio* partially updated to win32. No funny additions.
* [windows/driver.c]
Added win32 driver handling (will be used for win32 multimedia/
msvideo drivers).
* [win32/device.c]
Added device handling (K32OBJ_DEVICE_IOCTL). Implemented
VTDAPI.5 (used by win95' WINMM.timeGetTime())
Fri Jun 12 18:01:18 1998 Rein Klazes <rklazes@casema.net>
* [ole/compobj.c relay32/ole32.spec]
Add a stub for CoLockObjectExternal32.
* [objects/clipping.c]
Fix in IntersectClipRect(), when there is no initial clipping
region.
* [graphics/x11drv/graphics.c]
Corrected several "one-off" errors for the Ellipse, Rectangle
and RoundRectangle (especially small ones) draw routines.
Arc and friends still have to be done.
Fri Jun 12 06:23:19 1998 Matthew Becker <mbecker@glasscity.net>
* [misc/ntdll.c]
Fixed some of the parameter counts.
* [misc/registry.c]
General cleanup, documentation.
Standard keys are allowed to be 'closed' and succeed.
* [misc/shell.c]
Check for correct return values from Reg* functions.
* [win32/newfns.c]
Added stubs for OpenDesktopA, SetThreadDesktop, and
SetUserObjectInformationA.
Wed Jun 10 20:28:08 1998 James Juran <jrj120@psu.edu>
* [debugger/break.c]
Fixed bug introduced in 980503 that broke the -debug command
line option for PE executable files.
* [configure.in] [include/acconfig.h] [include/debugtools.h]
[documentation/debug-msgs]
Added 'configure' options to compile out debugging messages.
Use --disable-debug to disable all debugging messages, and
--disable-trace to just disable TRACE messages. This results
in a stripped executable that is 15-20% smaller. This option
is very much untested--don't expect it to work.
* [documentation/debug-msgs] [documentation/debugging]
Minor updates.
* [*/*.c]
Fixed some compile warnings. This also includes the
compile_warnings_trivial patch from WineHQ.
Tue Jun 10 22:00:18 1998 Eric Kohl <ekohl@abo.rhein-zeitung.de>
* [windows/sysmetrics.c][include/sysmetrics.h]
Fixed some Win95 values.
* [windows/nonclient.c][include/windows.h]
Fixed some Win95 drawing bugs.
Added extended window style flags (WS_EX_xxx).
* [misc/printdrv.c][relay32/winspool.spec]
Added stubs for DeletePrinterDriver32A, DeleteMonitor32A
and DeletePort32A.
* [windows/mdi.c][include/windows.h][relay32/user32.spec]
Added stubs for CascadeWindows and TileWindows.
* [controls/toolbar.c][include/toolbar.h]
Fixed a few bugs and implemented new features.
* [misc/shellord.c][relay32/shell32.spec]
Added stubs for SHELL32_60, SHELL32_61 and SHELL32_184.
* [controls/comctl32undoc.c][relay32/comctl32.spec]
New file comctl32undoc.c. Contains undocumented functions
of COMCTL32.DLL. These functions are needed to run EXPLORER.EXE
IEXPLORE.EXE and TASKMAN.EXE.
* [controls/status.c]
Added text alignment.
Tue Jun 8 22:00:00 1998 Bertho Stultiens <bertho@akhphd.au.dk>
* [programs/*/Makefile.in]
Changed the rules to use wrc as resource compiler but
passing the source through gcc first for macro expansion.
* [programs/*/*.rc]
Added #include "windows.h" for the resource compiler in the
appropriate files.
* [tools/wrc/wrc.[ch]] [tools/wrc/writeres.c]
Added commandline option -A for autoregister code.
Corrected the underscore problem by checking the proper define
from config.h.
Sun Jun 7 22:09:29 1998 Pascal Cuoq <pcuoq@ens-lyon.fr>
* [ole/ole2nls.c] [memory/string.c]
Improved LCMapString32A, and changed CompareString32A,
lstrcmp, lstrcmpi to use it.
Sat Jun 6 19:00:50 1998 Martin Strmberg <ams@ludd.luth.se>
* [include/winnt.h]
Added typedefs for security and tokens.
Sat Jun 6 12:26:31 1998 Morten Welinder <terra@diku.dk>
* [objects/text.c]
Use debugstr_an in DrawText16.
* [loader/resource.c]
Use debugres_w in FindResourceEx32W. Avoid crashing during
debug when wm is NULL.
* [if1632/relay.c]
In RELAY_DebugCallTo16, send output to the right place and
avoid side effects in macro arguments.
Wed Jun 3 20:56:03 1998 Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
* [controls/scroll.c] [windows/nonclient.c]
Fix several off by one errors in scrollbar painting.
Tue Jun 2 23:58:59 1998 Insomnia (Stea Greene) <insomnia@core.binghamton.edu>
* [graphics/dsound.c]
Rewrote mixer code to handle panning and volume for 16->16, 16->8,
8->16, and 8->8 bit mixes. Conforms to DirectX's "logarithmic
hearing scale" as specified in M$VC docs. Still does not handle
mixing of different frequencies (I am still working on that).
Tested 16->16 extensively with StarCraft. Other mixing combinations
untested but should work fine. Still kind of a work in progress,
so be warned.
Tue Jun 2 03:31:33 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [tools/wrc/utils.c]
dup_basename: fix to strip directory.
Mon Jun 1 20:00:00 1998 Juergen Schmied <juergen.schmied@metronet.de>
* [include/windows.h] [objects/cursoricon.c] [relay32/user32.spec]
Added stubs LoadCursorFromFileW and LoadCursorFromFileA.
1998-06-14 17:24:15 +02:00
|
|
|
|
1999-03-10 19:03:53 +01:00
|
|
|
|
Release 980614
Sun Jun 15 10:30:35 1998 Andreas Mohr <100.30936@germany.net>
* [files/dos_fs.c] [files/file.c] [if1632/wprocs.spec]
[misc/aspi.c]
Added support for scanners that need Adaptec's ASPI2DOS.
* [graphics/env.c] [misc/printerdrv.c] [graphics/win16drv/init.c]
[if1632/gdi.spec] [include/gdi.h]
Enhanced printer support (especially Win95):
Drv[GS]etPrinterData, [GS]etEnvironment; added AbortProc handling.
* [misc/tapi32.c] [relay32/tapi32.spec]
Added some stubs.
* [configure.in] [graphics/fontengine.c] [include/windows.h]
[misc/comm.c] [misc/w32skrnl.c] [misc/win32s16.c]
Made Wine compile on HP-UX (just for fun ;)
* [controls/menu.c] [include/windows.h]
Complete rewrite of EnableMenuItem32.
Free Agent 32 still doesn't work :(
* [misc/version.c] [if1632/kernel.spec] [include/winbase.h]
Implemented GetVersionEx16.
* [misc/network.c] [if1632/user.spec]
Fixed arguments of WNetGetPropertyText.
* [misc/version.c] [relay32/comctl32.spec] [relay32/oleaut32.spec]
Implemented COMCTL32_DllGetVersion, OaBuildVersion.
* [win32/file.c]
Fixed UNC handling of CreateFile32.
Sat Jun 13 22:35:12 1998 Douglas Ridgway <ridgway@winehq.com>
* [Makefile.in] [Make.rules.in]
Added pattern for CVS merge files to 'make clean'
* [ole/olecli.c] [windows/scroll.c] [windows/grahics.c]
Add some DC handle unlocking. (When hdc's are always unlocked,
they can be made moveable.)
* [documentation/wine.texinfo]
Started a Wine Design chapter with discussion of
graphics driver model.
Sat Jun 13 11:19:25 1998 David Luyer <luyer@ucs.uwa.edu.au>
* [misc/main.c] [relay32/relay386.c]
Added new option -debugmsg +relay=.... or -debugmsg -relay=...
Fri Jun 12 22:56:09 1998 Marcus Meissner <marcus@jet.franken.de>
* [relay32/snoop.c][relay32/builtin.c][loader/pe_image.c]
Added inter win32 dll snooping. Use -debugmsg +snoop.
Number of arguments and string references are autodetected.
Some small bugfixes in the PE loader.
* [misc/system.c]
Disabled SystemTimers. They do not work with the current
%fs handling in the 32->16 relaycode. (helps labview)
* [msdos/dpmi.c][msdos/int2f.c][files/drive.c]
Added a monoton linear increasing memory allocator for DPMI (required
for LabView, HAFAS, ...)
mscdex handling in emulated realmode interrupts (for mcicda.drv)
allocate logical drives only once. (helps Myst)
* [files/profile.c]
Handle ^Z as space. Found on CDROMS (helps Myst Installer).
* [multimedia/mmio.c]
mmio* partially updated to win32. No funny additions.
* [windows/driver.c]
Added win32 driver handling (will be used for win32 multimedia/
msvideo drivers).
* [win32/device.c]
Added device handling (K32OBJ_DEVICE_IOCTL). Implemented
VTDAPI.5 (used by win95' WINMM.timeGetTime())
Fri Jun 12 18:01:18 1998 Rein Klazes <rklazes@casema.net>
* [ole/compobj.c relay32/ole32.spec]
Add a stub for CoLockObjectExternal32.
* [objects/clipping.c]
Fix in IntersectClipRect(), when there is no initial clipping
region.
* [graphics/x11drv/graphics.c]
Corrected several "one-off" errors for the Ellipse, Rectangle
and RoundRectangle (especially small ones) draw routines.
Arc and friends still have to be done.
Fri Jun 12 06:23:19 1998 Matthew Becker <mbecker@glasscity.net>
* [misc/ntdll.c]
Fixed some of the parameter counts.
* [misc/registry.c]
General cleanup, documentation.
Standard keys are allowed to be 'closed' and succeed.
* [misc/shell.c]
Check for correct return values from Reg* functions.
* [win32/newfns.c]
Added stubs for OpenDesktopA, SetThreadDesktop, and
SetUserObjectInformationA.
Wed Jun 10 20:28:08 1998 James Juran <jrj120@psu.edu>
* [debugger/break.c]
Fixed bug introduced in 980503 that broke the -debug command
line option for PE executable files.
* [configure.in] [include/acconfig.h] [include/debugtools.h]
[documentation/debug-msgs]
Added 'configure' options to compile out debugging messages.
Use --disable-debug to disable all debugging messages, and
--disable-trace to just disable TRACE messages. This results
in a stripped executable that is 15-20% smaller. This option
is very much untested--don't expect it to work.
* [documentation/debug-msgs] [documentation/debugging]
Minor updates.
* [*/*.c]
Fixed some compile warnings. This also includes the
compile_warnings_trivial patch from WineHQ.
Tue Jun 10 22:00:18 1998 Eric Kohl <ekohl@abo.rhein-zeitung.de>
* [windows/sysmetrics.c][include/sysmetrics.h]
Fixed some Win95 values.
* [windows/nonclient.c][include/windows.h]
Fixed some Win95 drawing bugs.
Added extended window style flags (WS_EX_xxx).
* [misc/printdrv.c][relay32/winspool.spec]
Added stubs for DeletePrinterDriver32A, DeleteMonitor32A
and DeletePort32A.
* [windows/mdi.c][include/windows.h][relay32/user32.spec]
Added stubs for CascadeWindows and TileWindows.
* [controls/toolbar.c][include/toolbar.h]
Fixed a few bugs and implemented new features.
* [misc/shellord.c][relay32/shell32.spec]
Added stubs for SHELL32_60, SHELL32_61 and SHELL32_184.
* [controls/comctl32undoc.c][relay32/comctl32.spec]
New file comctl32undoc.c. Contains undocumented functions
of COMCTL32.DLL. These functions are needed to run EXPLORER.EXE
IEXPLORE.EXE and TASKMAN.EXE.
* [controls/status.c]
Added text alignment.
Tue Jun 8 22:00:00 1998 Bertho Stultiens <bertho@akhphd.au.dk>
* [programs/*/Makefile.in]
Changed the rules to use wrc as resource compiler but
passing the source through gcc first for macro expansion.
* [programs/*/*.rc]
Added #include "windows.h" for the resource compiler in the
appropriate files.
* [tools/wrc/wrc.[ch]] [tools/wrc/writeres.c]
Added commandline option -A for autoregister code.
Corrected the underscore problem by checking the proper define
from config.h.
Sun Jun 7 22:09:29 1998 Pascal Cuoq <pcuoq@ens-lyon.fr>
* [ole/ole2nls.c] [memory/string.c]
Improved LCMapString32A, and changed CompareString32A,
lstrcmp, lstrcmpi to use it.
Sat Jun 6 19:00:50 1998 Martin Strmberg <ams@ludd.luth.se>
* [include/winnt.h]
Added typedefs for security and tokens.
Sat Jun 6 12:26:31 1998 Morten Welinder <terra@diku.dk>
* [objects/text.c]
Use debugstr_an in DrawText16.
* [loader/resource.c]
Use debugres_w in FindResourceEx32W. Avoid crashing during
debug when wm is NULL.
* [if1632/relay.c]
In RELAY_DebugCallTo16, send output to the right place and
avoid side effects in macro arguments.
Wed Jun 3 20:56:03 1998 Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
* [controls/scroll.c] [windows/nonclient.c]
Fix several off by one errors in scrollbar painting.
Tue Jun 2 23:58:59 1998 Insomnia (Stea Greene) <insomnia@core.binghamton.edu>
* [graphics/dsound.c]
Rewrote mixer code to handle panning and volume for 16->16, 16->8,
8->16, and 8->8 bit mixes. Conforms to DirectX's "logarithmic
hearing scale" as specified in M$VC docs. Still does not handle
mixing of different frequencies (I am still working on that).
Tested 16->16 extensively with StarCraft. Other mixing combinations
untested but should work fine. Still kind of a work in progress,
so be warned.
Tue Jun 2 03:31:33 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [tools/wrc/utils.c]
dup_basename: fix to strip directory.
Mon Jun 1 20:00:00 1998 Juergen Schmied <juergen.schmied@metronet.de>
* [include/windows.h] [objects/cursoricon.c] [relay32/user32.spec]
Added stubs LoadCursorFromFileW and LoadCursorFromFileA.
1998-06-14 17:24:15 +02:00
|
|
|
/*
|
|
|
|
* TOKEN_DEFAULT_DACL
|
|
|
|
*/
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
typedef struct _TOKEN_DEFAULT_DACL {
|
|
|
|
PACL DefaultDacl;
|
2005-06-27 13:09:42 +02:00
|
|
|
} TOKEN_DEFAULT_DACL, *PTOKEN_DEFAULT_DACL;
|
Release 980614
Sun Jun 15 10:30:35 1998 Andreas Mohr <100.30936@germany.net>
* [files/dos_fs.c] [files/file.c] [if1632/wprocs.spec]
[misc/aspi.c]
Added support for scanners that need Adaptec's ASPI2DOS.
* [graphics/env.c] [misc/printerdrv.c] [graphics/win16drv/init.c]
[if1632/gdi.spec] [include/gdi.h]
Enhanced printer support (especially Win95):
Drv[GS]etPrinterData, [GS]etEnvironment; added AbortProc handling.
* [misc/tapi32.c] [relay32/tapi32.spec]
Added some stubs.
* [configure.in] [graphics/fontengine.c] [include/windows.h]
[misc/comm.c] [misc/w32skrnl.c] [misc/win32s16.c]
Made Wine compile on HP-UX (just for fun ;)
* [controls/menu.c] [include/windows.h]
Complete rewrite of EnableMenuItem32.
Free Agent 32 still doesn't work :(
* [misc/version.c] [if1632/kernel.spec] [include/winbase.h]
Implemented GetVersionEx16.
* [misc/network.c] [if1632/user.spec]
Fixed arguments of WNetGetPropertyText.
* [misc/version.c] [relay32/comctl32.spec] [relay32/oleaut32.spec]
Implemented COMCTL32_DllGetVersion, OaBuildVersion.
* [win32/file.c]
Fixed UNC handling of CreateFile32.
Sat Jun 13 22:35:12 1998 Douglas Ridgway <ridgway@winehq.com>
* [Makefile.in] [Make.rules.in]
Added pattern for CVS merge files to 'make clean'
* [ole/olecli.c] [windows/scroll.c] [windows/grahics.c]
Add some DC handle unlocking. (When hdc's are always unlocked,
they can be made moveable.)
* [documentation/wine.texinfo]
Started a Wine Design chapter with discussion of
graphics driver model.
Sat Jun 13 11:19:25 1998 David Luyer <luyer@ucs.uwa.edu.au>
* [misc/main.c] [relay32/relay386.c]
Added new option -debugmsg +relay=.... or -debugmsg -relay=...
Fri Jun 12 22:56:09 1998 Marcus Meissner <marcus@jet.franken.de>
* [relay32/snoop.c][relay32/builtin.c][loader/pe_image.c]
Added inter win32 dll snooping. Use -debugmsg +snoop.
Number of arguments and string references are autodetected.
Some small bugfixes in the PE loader.
* [misc/system.c]
Disabled SystemTimers. They do not work with the current
%fs handling in the 32->16 relaycode. (helps labview)
* [msdos/dpmi.c][msdos/int2f.c][files/drive.c]
Added a monoton linear increasing memory allocator for DPMI (required
for LabView, HAFAS, ...)
mscdex handling in emulated realmode interrupts (for mcicda.drv)
allocate logical drives only once. (helps Myst)
* [files/profile.c]
Handle ^Z as space. Found on CDROMS (helps Myst Installer).
* [multimedia/mmio.c]
mmio* partially updated to win32. No funny additions.
* [windows/driver.c]
Added win32 driver handling (will be used for win32 multimedia/
msvideo drivers).
* [win32/device.c]
Added device handling (K32OBJ_DEVICE_IOCTL). Implemented
VTDAPI.5 (used by win95' WINMM.timeGetTime())
Fri Jun 12 18:01:18 1998 Rein Klazes <rklazes@casema.net>
* [ole/compobj.c relay32/ole32.spec]
Add a stub for CoLockObjectExternal32.
* [objects/clipping.c]
Fix in IntersectClipRect(), when there is no initial clipping
region.
* [graphics/x11drv/graphics.c]
Corrected several "one-off" errors for the Ellipse, Rectangle
and RoundRectangle (especially small ones) draw routines.
Arc and friends still have to be done.
Fri Jun 12 06:23:19 1998 Matthew Becker <mbecker@glasscity.net>
* [misc/ntdll.c]
Fixed some of the parameter counts.
* [misc/registry.c]
General cleanup, documentation.
Standard keys are allowed to be 'closed' and succeed.
* [misc/shell.c]
Check for correct return values from Reg* functions.
* [win32/newfns.c]
Added stubs for OpenDesktopA, SetThreadDesktop, and
SetUserObjectInformationA.
Wed Jun 10 20:28:08 1998 James Juran <jrj120@psu.edu>
* [debugger/break.c]
Fixed bug introduced in 980503 that broke the -debug command
line option for PE executable files.
* [configure.in] [include/acconfig.h] [include/debugtools.h]
[documentation/debug-msgs]
Added 'configure' options to compile out debugging messages.
Use --disable-debug to disable all debugging messages, and
--disable-trace to just disable TRACE messages. This results
in a stripped executable that is 15-20% smaller. This option
is very much untested--don't expect it to work.
* [documentation/debug-msgs] [documentation/debugging]
Minor updates.
* [*/*.c]
Fixed some compile warnings. This also includes the
compile_warnings_trivial patch from WineHQ.
Tue Jun 10 22:00:18 1998 Eric Kohl <ekohl@abo.rhein-zeitung.de>
* [windows/sysmetrics.c][include/sysmetrics.h]
Fixed some Win95 values.
* [windows/nonclient.c][include/windows.h]
Fixed some Win95 drawing bugs.
Added extended window style flags (WS_EX_xxx).
* [misc/printdrv.c][relay32/winspool.spec]
Added stubs for DeletePrinterDriver32A, DeleteMonitor32A
and DeletePort32A.
* [windows/mdi.c][include/windows.h][relay32/user32.spec]
Added stubs for CascadeWindows and TileWindows.
* [controls/toolbar.c][include/toolbar.h]
Fixed a few bugs and implemented new features.
* [misc/shellord.c][relay32/shell32.spec]
Added stubs for SHELL32_60, SHELL32_61 and SHELL32_184.
* [controls/comctl32undoc.c][relay32/comctl32.spec]
New file comctl32undoc.c. Contains undocumented functions
of COMCTL32.DLL. These functions are needed to run EXPLORER.EXE
IEXPLORE.EXE and TASKMAN.EXE.
* [controls/status.c]
Added text alignment.
Tue Jun 8 22:00:00 1998 Bertho Stultiens <bertho@akhphd.au.dk>
* [programs/*/Makefile.in]
Changed the rules to use wrc as resource compiler but
passing the source through gcc first for macro expansion.
* [programs/*/*.rc]
Added #include "windows.h" for the resource compiler in the
appropriate files.
* [tools/wrc/wrc.[ch]] [tools/wrc/writeres.c]
Added commandline option -A for autoregister code.
Corrected the underscore problem by checking the proper define
from config.h.
Sun Jun 7 22:09:29 1998 Pascal Cuoq <pcuoq@ens-lyon.fr>
* [ole/ole2nls.c] [memory/string.c]
Improved LCMapString32A, and changed CompareString32A,
lstrcmp, lstrcmpi to use it.
Sat Jun 6 19:00:50 1998 Martin Strmberg <ams@ludd.luth.se>
* [include/winnt.h]
Added typedefs for security and tokens.
Sat Jun 6 12:26:31 1998 Morten Welinder <terra@diku.dk>
* [objects/text.c]
Use debugstr_an in DrawText16.
* [loader/resource.c]
Use debugres_w in FindResourceEx32W. Avoid crashing during
debug when wm is NULL.
* [if1632/relay.c]
In RELAY_DebugCallTo16, send output to the right place and
avoid side effects in macro arguments.
Wed Jun 3 20:56:03 1998 Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
* [controls/scroll.c] [windows/nonclient.c]
Fix several off by one errors in scrollbar painting.
Tue Jun 2 23:58:59 1998 Insomnia (Stea Greene) <insomnia@core.binghamton.edu>
* [graphics/dsound.c]
Rewrote mixer code to handle panning and volume for 16->16, 16->8,
8->16, and 8->8 bit mixes. Conforms to DirectX's "logarithmic
hearing scale" as specified in M$VC docs. Still does not handle
mixing of different frequencies (I am still working on that).
Tested 16->16 extensively with StarCraft. Other mixing combinations
untested but should work fine. Still kind of a work in progress,
so be warned.
Tue Jun 2 03:31:33 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [tools/wrc/utils.c]
dup_basename: fix to strip directory.
Mon Jun 1 20:00:00 1998 Juergen Schmied <juergen.schmied@metronet.de>
* [include/windows.h] [objects/cursoricon.c] [relay32/user32.spec]
Added stubs LoadCursorFromFileW and LoadCursorFromFileA.
1998-06-14 17:24:15 +02:00
|
|
|
|
|
|
|
/*
|
2010-08-22 11:31:47 +02:00
|
|
|
* TOKEN_SOURCE
|
Release 980614
Sun Jun 15 10:30:35 1998 Andreas Mohr <100.30936@germany.net>
* [files/dos_fs.c] [files/file.c] [if1632/wprocs.spec]
[misc/aspi.c]
Added support for scanners that need Adaptec's ASPI2DOS.
* [graphics/env.c] [misc/printerdrv.c] [graphics/win16drv/init.c]
[if1632/gdi.spec] [include/gdi.h]
Enhanced printer support (especially Win95):
Drv[GS]etPrinterData, [GS]etEnvironment; added AbortProc handling.
* [misc/tapi32.c] [relay32/tapi32.spec]
Added some stubs.
* [configure.in] [graphics/fontengine.c] [include/windows.h]
[misc/comm.c] [misc/w32skrnl.c] [misc/win32s16.c]
Made Wine compile on HP-UX (just for fun ;)
* [controls/menu.c] [include/windows.h]
Complete rewrite of EnableMenuItem32.
Free Agent 32 still doesn't work :(
* [misc/version.c] [if1632/kernel.spec] [include/winbase.h]
Implemented GetVersionEx16.
* [misc/network.c] [if1632/user.spec]
Fixed arguments of WNetGetPropertyText.
* [misc/version.c] [relay32/comctl32.spec] [relay32/oleaut32.spec]
Implemented COMCTL32_DllGetVersion, OaBuildVersion.
* [win32/file.c]
Fixed UNC handling of CreateFile32.
Sat Jun 13 22:35:12 1998 Douglas Ridgway <ridgway@winehq.com>
* [Makefile.in] [Make.rules.in]
Added pattern for CVS merge files to 'make clean'
* [ole/olecli.c] [windows/scroll.c] [windows/grahics.c]
Add some DC handle unlocking. (When hdc's are always unlocked,
they can be made moveable.)
* [documentation/wine.texinfo]
Started a Wine Design chapter with discussion of
graphics driver model.
Sat Jun 13 11:19:25 1998 David Luyer <luyer@ucs.uwa.edu.au>
* [misc/main.c] [relay32/relay386.c]
Added new option -debugmsg +relay=.... or -debugmsg -relay=...
Fri Jun 12 22:56:09 1998 Marcus Meissner <marcus@jet.franken.de>
* [relay32/snoop.c][relay32/builtin.c][loader/pe_image.c]
Added inter win32 dll snooping. Use -debugmsg +snoop.
Number of arguments and string references are autodetected.
Some small bugfixes in the PE loader.
* [misc/system.c]
Disabled SystemTimers. They do not work with the current
%fs handling in the 32->16 relaycode. (helps labview)
* [msdos/dpmi.c][msdos/int2f.c][files/drive.c]
Added a monoton linear increasing memory allocator for DPMI (required
for LabView, HAFAS, ...)
mscdex handling in emulated realmode interrupts (for mcicda.drv)
allocate logical drives only once. (helps Myst)
* [files/profile.c]
Handle ^Z as space. Found on CDROMS (helps Myst Installer).
* [multimedia/mmio.c]
mmio* partially updated to win32. No funny additions.
* [windows/driver.c]
Added win32 driver handling (will be used for win32 multimedia/
msvideo drivers).
* [win32/device.c]
Added device handling (K32OBJ_DEVICE_IOCTL). Implemented
VTDAPI.5 (used by win95' WINMM.timeGetTime())
Fri Jun 12 18:01:18 1998 Rein Klazes <rklazes@casema.net>
* [ole/compobj.c relay32/ole32.spec]
Add a stub for CoLockObjectExternal32.
* [objects/clipping.c]
Fix in IntersectClipRect(), when there is no initial clipping
region.
* [graphics/x11drv/graphics.c]
Corrected several "one-off" errors for the Ellipse, Rectangle
and RoundRectangle (especially small ones) draw routines.
Arc and friends still have to be done.
Fri Jun 12 06:23:19 1998 Matthew Becker <mbecker@glasscity.net>
* [misc/ntdll.c]
Fixed some of the parameter counts.
* [misc/registry.c]
General cleanup, documentation.
Standard keys are allowed to be 'closed' and succeed.
* [misc/shell.c]
Check for correct return values from Reg* functions.
* [win32/newfns.c]
Added stubs for OpenDesktopA, SetThreadDesktop, and
SetUserObjectInformationA.
Wed Jun 10 20:28:08 1998 James Juran <jrj120@psu.edu>
* [debugger/break.c]
Fixed bug introduced in 980503 that broke the -debug command
line option for PE executable files.
* [configure.in] [include/acconfig.h] [include/debugtools.h]
[documentation/debug-msgs]
Added 'configure' options to compile out debugging messages.
Use --disable-debug to disable all debugging messages, and
--disable-trace to just disable TRACE messages. This results
in a stripped executable that is 15-20% smaller. This option
is very much untested--don't expect it to work.
* [documentation/debug-msgs] [documentation/debugging]
Minor updates.
* [*/*.c]
Fixed some compile warnings. This also includes the
compile_warnings_trivial patch from WineHQ.
Tue Jun 10 22:00:18 1998 Eric Kohl <ekohl@abo.rhein-zeitung.de>
* [windows/sysmetrics.c][include/sysmetrics.h]
Fixed some Win95 values.
* [windows/nonclient.c][include/windows.h]
Fixed some Win95 drawing bugs.
Added extended window style flags (WS_EX_xxx).
* [misc/printdrv.c][relay32/winspool.spec]
Added stubs for DeletePrinterDriver32A, DeleteMonitor32A
and DeletePort32A.
* [windows/mdi.c][include/windows.h][relay32/user32.spec]
Added stubs for CascadeWindows and TileWindows.
* [controls/toolbar.c][include/toolbar.h]
Fixed a few bugs and implemented new features.
* [misc/shellord.c][relay32/shell32.spec]
Added stubs for SHELL32_60, SHELL32_61 and SHELL32_184.
* [controls/comctl32undoc.c][relay32/comctl32.spec]
New file comctl32undoc.c. Contains undocumented functions
of COMCTL32.DLL. These functions are needed to run EXPLORER.EXE
IEXPLORE.EXE and TASKMAN.EXE.
* [controls/status.c]
Added text alignment.
Tue Jun 8 22:00:00 1998 Bertho Stultiens <bertho@akhphd.au.dk>
* [programs/*/Makefile.in]
Changed the rules to use wrc as resource compiler but
passing the source through gcc first for macro expansion.
* [programs/*/*.rc]
Added #include "windows.h" for the resource compiler in the
appropriate files.
* [tools/wrc/wrc.[ch]] [tools/wrc/writeres.c]
Added commandline option -A for autoregister code.
Corrected the underscore problem by checking the proper define
from config.h.
Sun Jun 7 22:09:29 1998 Pascal Cuoq <pcuoq@ens-lyon.fr>
* [ole/ole2nls.c] [memory/string.c]
Improved LCMapString32A, and changed CompareString32A,
lstrcmp, lstrcmpi to use it.
Sat Jun 6 19:00:50 1998 Martin Strmberg <ams@ludd.luth.se>
* [include/winnt.h]
Added typedefs for security and tokens.
Sat Jun 6 12:26:31 1998 Morten Welinder <terra@diku.dk>
* [objects/text.c]
Use debugstr_an in DrawText16.
* [loader/resource.c]
Use debugres_w in FindResourceEx32W. Avoid crashing during
debug when wm is NULL.
* [if1632/relay.c]
In RELAY_DebugCallTo16, send output to the right place and
avoid side effects in macro arguments.
Wed Jun 3 20:56:03 1998 Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
* [controls/scroll.c] [windows/nonclient.c]
Fix several off by one errors in scrollbar painting.
Tue Jun 2 23:58:59 1998 Insomnia (Stea Greene) <insomnia@core.binghamton.edu>
* [graphics/dsound.c]
Rewrote mixer code to handle panning and volume for 16->16, 16->8,
8->16, and 8->8 bit mixes. Conforms to DirectX's "logarithmic
hearing scale" as specified in M$VC docs. Still does not handle
mixing of different frequencies (I am still working on that).
Tested 16->16 extensively with StarCraft. Other mixing combinations
untested but should work fine. Still kind of a work in progress,
so be warned.
Tue Jun 2 03:31:33 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [tools/wrc/utils.c]
dup_basename: fix to strip directory.
Mon Jun 1 20:00:00 1998 Juergen Schmied <juergen.schmied@metronet.de>
* [include/windows.h] [objects/cursoricon.c] [relay32/user32.spec]
Added stubs LoadCursorFromFileW and LoadCursorFromFileA.
1998-06-14 17:24:15 +02:00
|
|
|
*/
|
|
|
|
|
2002-10-23 20:50:10 +02:00
|
|
|
#define TOKEN_SOURCE_LENGTH 8
|
|
|
|
|
Release 980614
Sun Jun 15 10:30:35 1998 Andreas Mohr <100.30936@germany.net>
* [files/dos_fs.c] [files/file.c] [if1632/wprocs.spec]
[misc/aspi.c]
Added support for scanners that need Adaptec's ASPI2DOS.
* [graphics/env.c] [misc/printerdrv.c] [graphics/win16drv/init.c]
[if1632/gdi.spec] [include/gdi.h]
Enhanced printer support (especially Win95):
Drv[GS]etPrinterData, [GS]etEnvironment; added AbortProc handling.
* [misc/tapi32.c] [relay32/tapi32.spec]
Added some stubs.
* [configure.in] [graphics/fontengine.c] [include/windows.h]
[misc/comm.c] [misc/w32skrnl.c] [misc/win32s16.c]
Made Wine compile on HP-UX (just for fun ;)
* [controls/menu.c] [include/windows.h]
Complete rewrite of EnableMenuItem32.
Free Agent 32 still doesn't work :(
* [misc/version.c] [if1632/kernel.spec] [include/winbase.h]
Implemented GetVersionEx16.
* [misc/network.c] [if1632/user.spec]
Fixed arguments of WNetGetPropertyText.
* [misc/version.c] [relay32/comctl32.spec] [relay32/oleaut32.spec]
Implemented COMCTL32_DllGetVersion, OaBuildVersion.
* [win32/file.c]
Fixed UNC handling of CreateFile32.
Sat Jun 13 22:35:12 1998 Douglas Ridgway <ridgway@winehq.com>
* [Makefile.in] [Make.rules.in]
Added pattern for CVS merge files to 'make clean'
* [ole/olecli.c] [windows/scroll.c] [windows/grahics.c]
Add some DC handle unlocking. (When hdc's are always unlocked,
they can be made moveable.)
* [documentation/wine.texinfo]
Started a Wine Design chapter with discussion of
graphics driver model.
Sat Jun 13 11:19:25 1998 David Luyer <luyer@ucs.uwa.edu.au>
* [misc/main.c] [relay32/relay386.c]
Added new option -debugmsg +relay=.... or -debugmsg -relay=...
Fri Jun 12 22:56:09 1998 Marcus Meissner <marcus@jet.franken.de>
* [relay32/snoop.c][relay32/builtin.c][loader/pe_image.c]
Added inter win32 dll snooping. Use -debugmsg +snoop.
Number of arguments and string references are autodetected.
Some small bugfixes in the PE loader.
* [misc/system.c]
Disabled SystemTimers. They do not work with the current
%fs handling in the 32->16 relaycode. (helps labview)
* [msdos/dpmi.c][msdos/int2f.c][files/drive.c]
Added a monoton linear increasing memory allocator for DPMI (required
for LabView, HAFAS, ...)
mscdex handling in emulated realmode interrupts (for mcicda.drv)
allocate logical drives only once. (helps Myst)
* [files/profile.c]
Handle ^Z as space. Found on CDROMS (helps Myst Installer).
* [multimedia/mmio.c]
mmio* partially updated to win32. No funny additions.
* [windows/driver.c]
Added win32 driver handling (will be used for win32 multimedia/
msvideo drivers).
* [win32/device.c]
Added device handling (K32OBJ_DEVICE_IOCTL). Implemented
VTDAPI.5 (used by win95' WINMM.timeGetTime())
Fri Jun 12 18:01:18 1998 Rein Klazes <rklazes@casema.net>
* [ole/compobj.c relay32/ole32.spec]
Add a stub for CoLockObjectExternal32.
* [objects/clipping.c]
Fix in IntersectClipRect(), when there is no initial clipping
region.
* [graphics/x11drv/graphics.c]
Corrected several "one-off" errors for the Ellipse, Rectangle
and RoundRectangle (especially small ones) draw routines.
Arc and friends still have to be done.
Fri Jun 12 06:23:19 1998 Matthew Becker <mbecker@glasscity.net>
* [misc/ntdll.c]
Fixed some of the parameter counts.
* [misc/registry.c]
General cleanup, documentation.
Standard keys are allowed to be 'closed' and succeed.
* [misc/shell.c]
Check for correct return values from Reg* functions.
* [win32/newfns.c]
Added stubs for OpenDesktopA, SetThreadDesktop, and
SetUserObjectInformationA.
Wed Jun 10 20:28:08 1998 James Juran <jrj120@psu.edu>
* [debugger/break.c]
Fixed bug introduced in 980503 that broke the -debug command
line option for PE executable files.
* [configure.in] [include/acconfig.h] [include/debugtools.h]
[documentation/debug-msgs]
Added 'configure' options to compile out debugging messages.
Use --disable-debug to disable all debugging messages, and
--disable-trace to just disable TRACE messages. This results
in a stripped executable that is 15-20% smaller. This option
is very much untested--don't expect it to work.
* [documentation/debug-msgs] [documentation/debugging]
Minor updates.
* [*/*.c]
Fixed some compile warnings. This also includes the
compile_warnings_trivial patch from WineHQ.
Tue Jun 10 22:00:18 1998 Eric Kohl <ekohl@abo.rhein-zeitung.de>
* [windows/sysmetrics.c][include/sysmetrics.h]
Fixed some Win95 values.
* [windows/nonclient.c][include/windows.h]
Fixed some Win95 drawing bugs.
Added extended window style flags (WS_EX_xxx).
* [misc/printdrv.c][relay32/winspool.spec]
Added stubs for DeletePrinterDriver32A, DeleteMonitor32A
and DeletePort32A.
* [windows/mdi.c][include/windows.h][relay32/user32.spec]
Added stubs for CascadeWindows and TileWindows.
* [controls/toolbar.c][include/toolbar.h]
Fixed a few bugs and implemented new features.
* [misc/shellord.c][relay32/shell32.spec]
Added stubs for SHELL32_60, SHELL32_61 and SHELL32_184.
* [controls/comctl32undoc.c][relay32/comctl32.spec]
New file comctl32undoc.c. Contains undocumented functions
of COMCTL32.DLL. These functions are needed to run EXPLORER.EXE
IEXPLORE.EXE and TASKMAN.EXE.
* [controls/status.c]
Added text alignment.
Tue Jun 8 22:00:00 1998 Bertho Stultiens <bertho@akhphd.au.dk>
* [programs/*/Makefile.in]
Changed the rules to use wrc as resource compiler but
passing the source through gcc first for macro expansion.
* [programs/*/*.rc]
Added #include "windows.h" for the resource compiler in the
appropriate files.
* [tools/wrc/wrc.[ch]] [tools/wrc/writeres.c]
Added commandline option -A for autoregister code.
Corrected the underscore problem by checking the proper define
from config.h.
Sun Jun 7 22:09:29 1998 Pascal Cuoq <pcuoq@ens-lyon.fr>
* [ole/ole2nls.c] [memory/string.c]
Improved LCMapString32A, and changed CompareString32A,
lstrcmp, lstrcmpi to use it.
Sat Jun 6 19:00:50 1998 Martin Strmberg <ams@ludd.luth.se>
* [include/winnt.h]
Added typedefs for security and tokens.
Sat Jun 6 12:26:31 1998 Morten Welinder <terra@diku.dk>
* [objects/text.c]
Use debugstr_an in DrawText16.
* [loader/resource.c]
Use debugres_w in FindResourceEx32W. Avoid crashing during
debug when wm is NULL.
* [if1632/relay.c]
In RELAY_DebugCallTo16, send output to the right place and
avoid side effects in macro arguments.
Wed Jun 3 20:56:03 1998 Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
* [controls/scroll.c] [windows/nonclient.c]
Fix several off by one errors in scrollbar painting.
Tue Jun 2 23:58:59 1998 Insomnia (Stea Greene) <insomnia@core.binghamton.edu>
* [graphics/dsound.c]
Rewrote mixer code to handle panning and volume for 16->16, 16->8,
8->16, and 8->8 bit mixes. Conforms to DirectX's "logarithmic
hearing scale" as specified in M$VC docs. Still does not handle
mixing of different frequencies (I am still working on that).
Tested 16->16 extensively with StarCraft. Other mixing combinations
untested but should work fine. Still kind of a work in progress,
so be warned.
Tue Jun 2 03:31:33 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [tools/wrc/utils.c]
dup_basename: fix to strip directory.
Mon Jun 1 20:00:00 1998 Juergen Schmied <juergen.schmied@metronet.de>
* [include/windows.h] [objects/cursoricon.c] [relay32/user32.spec]
Added stubs LoadCursorFromFileW and LoadCursorFromFileA.
1998-06-14 17:24:15 +02:00
|
|
|
typedef struct _TOKEN_SOURCE {
|
2002-10-23 20:50:10 +02:00
|
|
|
char SourceName[TOKEN_SOURCE_LENGTH];
|
2002-06-01 01:06:46 +02:00
|
|
|
LUID SourceIdentifier;
|
2005-06-27 13:09:42 +02:00
|
|
|
} TOKEN_SOURCE, *PTOKEN_SOURCE;
|
Release 980614
Sun Jun 15 10:30:35 1998 Andreas Mohr <100.30936@germany.net>
* [files/dos_fs.c] [files/file.c] [if1632/wprocs.spec]
[misc/aspi.c]
Added support for scanners that need Adaptec's ASPI2DOS.
* [graphics/env.c] [misc/printerdrv.c] [graphics/win16drv/init.c]
[if1632/gdi.spec] [include/gdi.h]
Enhanced printer support (especially Win95):
Drv[GS]etPrinterData, [GS]etEnvironment; added AbortProc handling.
* [misc/tapi32.c] [relay32/tapi32.spec]
Added some stubs.
* [configure.in] [graphics/fontengine.c] [include/windows.h]
[misc/comm.c] [misc/w32skrnl.c] [misc/win32s16.c]
Made Wine compile on HP-UX (just for fun ;)
* [controls/menu.c] [include/windows.h]
Complete rewrite of EnableMenuItem32.
Free Agent 32 still doesn't work :(
* [misc/version.c] [if1632/kernel.spec] [include/winbase.h]
Implemented GetVersionEx16.
* [misc/network.c] [if1632/user.spec]
Fixed arguments of WNetGetPropertyText.
* [misc/version.c] [relay32/comctl32.spec] [relay32/oleaut32.spec]
Implemented COMCTL32_DllGetVersion, OaBuildVersion.
* [win32/file.c]
Fixed UNC handling of CreateFile32.
Sat Jun 13 22:35:12 1998 Douglas Ridgway <ridgway@winehq.com>
* [Makefile.in] [Make.rules.in]
Added pattern for CVS merge files to 'make clean'
* [ole/olecli.c] [windows/scroll.c] [windows/grahics.c]
Add some DC handle unlocking. (When hdc's are always unlocked,
they can be made moveable.)
* [documentation/wine.texinfo]
Started a Wine Design chapter with discussion of
graphics driver model.
Sat Jun 13 11:19:25 1998 David Luyer <luyer@ucs.uwa.edu.au>
* [misc/main.c] [relay32/relay386.c]
Added new option -debugmsg +relay=.... or -debugmsg -relay=...
Fri Jun 12 22:56:09 1998 Marcus Meissner <marcus@jet.franken.de>
* [relay32/snoop.c][relay32/builtin.c][loader/pe_image.c]
Added inter win32 dll snooping. Use -debugmsg +snoop.
Number of arguments and string references are autodetected.
Some small bugfixes in the PE loader.
* [misc/system.c]
Disabled SystemTimers. They do not work with the current
%fs handling in the 32->16 relaycode. (helps labview)
* [msdos/dpmi.c][msdos/int2f.c][files/drive.c]
Added a monoton linear increasing memory allocator for DPMI (required
for LabView, HAFAS, ...)
mscdex handling in emulated realmode interrupts (for mcicda.drv)
allocate logical drives only once. (helps Myst)
* [files/profile.c]
Handle ^Z as space. Found on CDROMS (helps Myst Installer).
* [multimedia/mmio.c]
mmio* partially updated to win32. No funny additions.
* [windows/driver.c]
Added win32 driver handling (will be used for win32 multimedia/
msvideo drivers).
* [win32/device.c]
Added device handling (K32OBJ_DEVICE_IOCTL). Implemented
VTDAPI.5 (used by win95' WINMM.timeGetTime())
Fri Jun 12 18:01:18 1998 Rein Klazes <rklazes@casema.net>
* [ole/compobj.c relay32/ole32.spec]
Add a stub for CoLockObjectExternal32.
* [objects/clipping.c]
Fix in IntersectClipRect(), when there is no initial clipping
region.
* [graphics/x11drv/graphics.c]
Corrected several "one-off" errors for the Ellipse, Rectangle
and RoundRectangle (especially small ones) draw routines.
Arc and friends still have to be done.
Fri Jun 12 06:23:19 1998 Matthew Becker <mbecker@glasscity.net>
* [misc/ntdll.c]
Fixed some of the parameter counts.
* [misc/registry.c]
General cleanup, documentation.
Standard keys are allowed to be 'closed' and succeed.
* [misc/shell.c]
Check for correct return values from Reg* functions.
* [win32/newfns.c]
Added stubs for OpenDesktopA, SetThreadDesktop, and
SetUserObjectInformationA.
Wed Jun 10 20:28:08 1998 James Juran <jrj120@psu.edu>
* [debugger/break.c]
Fixed bug introduced in 980503 that broke the -debug command
line option for PE executable files.
* [configure.in] [include/acconfig.h] [include/debugtools.h]
[documentation/debug-msgs]
Added 'configure' options to compile out debugging messages.
Use --disable-debug to disable all debugging messages, and
--disable-trace to just disable TRACE messages. This results
in a stripped executable that is 15-20% smaller. This option
is very much untested--don't expect it to work.
* [documentation/debug-msgs] [documentation/debugging]
Minor updates.
* [*/*.c]
Fixed some compile warnings. This also includes the
compile_warnings_trivial patch from WineHQ.
Tue Jun 10 22:00:18 1998 Eric Kohl <ekohl@abo.rhein-zeitung.de>
* [windows/sysmetrics.c][include/sysmetrics.h]
Fixed some Win95 values.
* [windows/nonclient.c][include/windows.h]
Fixed some Win95 drawing bugs.
Added extended window style flags (WS_EX_xxx).
* [misc/printdrv.c][relay32/winspool.spec]
Added stubs for DeletePrinterDriver32A, DeleteMonitor32A
and DeletePort32A.
* [windows/mdi.c][include/windows.h][relay32/user32.spec]
Added stubs for CascadeWindows and TileWindows.
* [controls/toolbar.c][include/toolbar.h]
Fixed a few bugs and implemented new features.
* [misc/shellord.c][relay32/shell32.spec]
Added stubs for SHELL32_60, SHELL32_61 and SHELL32_184.
* [controls/comctl32undoc.c][relay32/comctl32.spec]
New file comctl32undoc.c. Contains undocumented functions
of COMCTL32.DLL. These functions are needed to run EXPLORER.EXE
IEXPLORE.EXE and TASKMAN.EXE.
* [controls/status.c]
Added text alignment.
Tue Jun 8 22:00:00 1998 Bertho Stultiens <bertho@akhphd.au.dk>
* [programs/*/Makefile.in]
Changed the rules to use wrc as resource compiler but
passing the source through gcc first for macro expansion.
* [programs/*/*.rc]
Added #include "windows.h" for the resource compiler in the
appropriate files.
* [tools/wrc/wrc.[ch]] [tools/wrc/writeres.c]
Added commandline option -A for autoregister code.
Corrected the underscore problem by checking the proper define
from config.h.
Sun Jun 7 22:09:29 1998 Pascal Cuoq <pcuoq@ens-lyon.fr>
* [ole/ole2nls.c] [memory/string.c]
Improved LCMapString32A, and changed CompareString32A,
lstrcmp, lstrcmpi to use it.
Sat Jun 6 19:00:50 1998 Martin Strmberg <ams@ludd.luth.se>
* [include/winnt.h]
Added typedefs for security and tokens.
Sat Jun 6 12:26:31 1998 Morten Welinder <terra@diku.dk>
* [objects/text.c]
Use debugstr_an in DrawText16.
* [loader/resource.c]
Use debugres_w in FindResourceEx32W. Avoid crashing during
debug when wm is NULL.
* [if1632/relay.c]
In RELAY_DebugCallTo16, send output to the right place and
avoid side effects in macro arguments.
Wed Jun 3 20:56:03 1998 Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
* [controls/scroll.c] [windows/nonclient.c]
Fix several off by one errors in scrollbar painting.
Tue Jun 2 23:58:59 1998 Insomnia (Stea Greene) <insomnia@core.binghamton.edu>
* [graphics/dsound.c]
Rewrote mixer code to handle panning and volume for 16->16, 16->8,
8->16, and 8->8 bit mixes. Conforms to DirectX's "logarithmic
hearing scale" as specified in M$VC docs. Still does not handle
mixing of different frequencies (I am still working on that).
Tested 16->16 extensively with StarCraft. Other mixing combinations
untested but should work fine. Still kind of a work in progress,
so be warned.
Tue Jun 2 03:31:33 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [tools/wrc/utils.c]
dup_basename: fix to strip directory.
Mon Jun 1 20:00:00 1998 Juergen Schmied <juergen.schmied@metronet.de>
* [include/windows.h] [objects/cursoricon.c] [relay32/user32.spec]
Added stubs LoadCursorFromFileW and LoadCursorFromFileA.
1998-06-14 17:24:15 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* TOKEN_TYPE
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef enum tagTOKEN_TYPE {
|
2002-06-01 01:06:46 +02:00
|
|
|
TokenPrimary = 1,
|
|
|
|
TokenImpersonation
|
|
|
|
} TOKEN_TYPE;
|
Release 980614
Sun Jun 15 10:30:35 1998 Andreas Mohr <100.30936@germany.net>
* [files/dos_fs.c] [files/file.c] [if1632/wprocs.spec]
[misc/aspi.c]
Added support for scanners that need Adaptec's ASPI2DOS.
* [graphics/env.c] [misc/printerdrv.c] [graphics/win16drv/init.c]
[if1632/gdi.spec] [include/gdi.h]
Enhanced printer support (especially Win95):
Drv[GS]etPrinterData, [GS]etEnvironment; added AbortProc handling.
* [misc/tapi32.c] [relay32/tapi32.spec]
Added some stubs.
* [configure.in] [graphics/fontengine.c] [include/windows.h]
[misc/comm.c] [misc/w32skrnl.c] [misc/win32s16.c]
Made Wine compile on HP-UX (just for fun ;)
* [controls/menu.c] [include/windows.h]
Complete rewrite of EnableMenuItem32.
Free Agent 32 still doesn't work :(
* [misc/version.c] [if1632/kernel.spec] [include/winbase.h]
Implemented GetVersionEx16.
* [misc/network.c] [if1632/user.spec]
Fixed arguments of WNetGetPropertyText.
* [misc/version.c] [relay32/comctl32.spec] [relay32/oleaut32.spec]
Implemented COMCTL32_DllGetVersion, OaBuildVersion.
* [win32/file.c]
Fixed UNC handling of CreateFile32.
Sat Jun 13 22:35:12 1998 Douglas Ridgway <ridgway@winehq.com>
* [Makefile.in] [Make.rules.in]
Added pattern for CVS merge files to 'make clean'
* [ole/olecli.c] [windows/scroll.c] [windows/grahics.c]
Add some DC handle unlocking. (When hdc's are always unlocked,
they can be made moveable.)
* [documentation/wine.texinfo]
Started a Wine Design chapter with discussion of
graphics driver model.
Sat Jun 13 11:19:25 1998 David Luyer <luyer@ucs.uwa.edu.au>
* [misc/main.c] [relay32/relay386.c]
Added new option -debugmsg +relay=.... or -debugmsg -relay=...
Fri Jun 12 22:56:09 1998 Marcus Meissner <marcus@jet.franken.de>
* [relay32/snoop.c][relay32/builtin.c][loader/pe_image.c]
Added inter win32 dll snooping. Use -debugmsg +snoop.
Number of arguments and string references are autodetected.
Some small bugfixes in the PE loader.
* [misc/system.c]
Disabled SystemTimers. They do not work with the current
%fs handling in the 32->16 relaycode. (helps labview)
* [msdos/dpmi.c][msdos/int2f.c][files/drive.c]
Added a monoton linear increasing memory allocator for DPMI (required
for LabView, HAFAS, ...)
mscdex handling in emulated realmode interrupts (for mcicda.drv)
allocate logical drives only once. (helps Myst)
* [files/profile.c]
Handle ^Z as space. Found on CDROMS (helps Myst Installer).
* [multimedia/mmio.c]
mmio* partially updated to win32. No funny additions.
* [windows/driver.c]
Added win32 driver handling (will be used for win32 multimedia/
msvideo drivers).
* [win32/device.c]
Added device handling (K32OBJ_DEVICE_IOCTL). Implemented
VTDAPI.5 (used by win95' WINMM.timeGetTime())
Fri Jun 12 18:01:18 1998 Rein Klazes <rklazes@casema.net>
* [ole/compobj.c relay32/ole32.spec]
Add a stub for CoLockObjectExternal32.
* [objects/clipping.c]
Fix in IntersectClipRect(), when there is no initial clipping
region.
* [graphics/x11drv/graphics.c]
Corrected several "one-off" errors for the Ellipse, Rectangle
and RoundRectangle (especially small ones) draw routines.
Arc and friends still have to be done.
Fri Jun 12 06:23:19 1998 Matthew Becker <mbecker@glasscity.net>
* [misc/ntdll.c]
Fixed some of the parameter counts.
* [misc/registry.c]
General cleanup, documentation.
Standard keys are allowed to be 'closed' and succeed.
* [misc/shell.c]
Check for correct return values from Reg* functions.
* [win32/newfns.c]
Added stubs for OpenDesktopA, SetThreadDesktop, and
SetUserObjectInformationA.
Wed Jun 10 20:28:08 1998 James Juran <jrj120@psu.edu>
* [debugger/break.c]
Fixed bug introduced in 980503 that broke the -debug command
line option for PE executable files.
* [configure.in] [include/acconfig.h] [include/debugtools.h]
[documentation/debug-msgs]
Added 'configure' options to compile out debugging messages.
Use --disable-debug to disable all debugging messages, and
--disable-trace to just disable TRACE messages. This results
in a stripped executable that is 15-20% smaller. This option
is very much untested--don't expect it to work.
* [documentation/debug-msgs] [documentation/debugging]
Minor updates.
* [*/*.c]
Fixed some compile warnings. This also includes the
compile_warnings_trivial patch from WineHQ.
Tue Jun 10 22:00:18 1998 Eric Kohl <ekohl@abo.rhein-zeitung.de>
* [windows/sysmetrics.c][include/sysmetrics.h]
Fixed some Win95 values.
* [windows/nonclient.c][include/windows.h]
Fixed some Win95 drawing bugs.
Added extended window style flags (WS_EX_xxx).
* [misc/printdrv.c][relay32/winspool.spec]
Added stubs for DeletePrinterDriver32A, DeleteMonitor32A
and DeletePort32A.
* [windows/mdi.c][include/windows.h][relay32/user32.spec]
Added stubs for CascadeWindows and TileWindows.
* [controls/toolbar.c][include/toolbar.h]
Fixed a few bugs and implemented new features.
* [misc/shellord.c][relay32/shell32.spec]
Added stubs for SHELL32_60, SHELL32_61 and SHELL32_184.
* [controls/comctl32undoc.c][relay32/comctl32.spec]
New file comctl32undoc.c. Contains undocumented functions
of COMCTL32.DLL. These functions are needed to run EXPLORER.EXE
IEXPLORE.EXE and TASKMAN.EXE.
* [controls/status.c]
Added text alignment.
Tue Jun 8 22:00:00 1998 Bertho Stultiens <bertho@akhphd.au.dk>
* [programs/*/Makefile.in]
Changed the rules to use wrc as resource compiler but
passing the source through gcc first for macro expansion.
* [programs/*/*.rc]
Added #include "windows.h" for the resource compiler in the
appropriate files.
* [tools/wrc/wrc.[ch]] [tools/wrc/writeres.c]
Added commandline option -A for autoregister code.
Corrected the underscore problem by checking the proper define
from config.h.
Sun Jun 7 22:09:29 1998 Pascal Cuoq <pcuoq@ens-lyon.fr>
* [ole/ole2nls.c] [memory/string.c]
Improved LCMapString32A, and changed CompareString32A,
lstrcmp, lstrcmpi to use it.
Sat Jun 6 19:00:50 1998 Martin Strmberg <ams@ludd.luth.se>
* [include/winnt.h]
Added typedefs for security and tokens.
Sat Jun 6 12:26:31 1998 Morten Welinder <terra@diku.dk>
* [objects/text.c]
Use debugstr_an in DrawText16.
* [loader/resource.c]
Use debugres_w in FindResourceEx32W. Avoid crashing during
debug when wm is NULL.
* [if1632/relay.c]
In RELAY_DebugCallTo16, send output to the right place and
avoid side effects in macro arguments.
Wed Jun 3 20:56:03 1998 Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
* [controls/scroll.c] [windows/nonclient.c]
Fix several off by one errors in scrollbar painting.
Tue Jun 2 23:58:59 1998 Insomnia (Stea Greene) <insomnia@core.binghamton.edu>
* [graphics/dsound.c]
Rewrote mixer code to handle panning and volume for 16->16, 16->8,
8->16, and 8->8 bit mixes. Conforms to DirectX's "logarithmic
hearing scale" as specified in M$VC docs. Still does not handle
mixing of different frequencies (I am still working on that).
Tested 16->16 extensively with StarCraft. Other mixing combinations
untested but should work fine. Still kind of a work in progress,
so be warned.
Tue Jun 2 03:31:33 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [tools/wrc/utils.c]
dup_basename: fix to strip directory.
Mon Jun 1 20:00:00 1998 Juergen Schmied <juergen.schmied@metronet.de>
* [include/windows.h] [objects/cursoricon.c] [relay32/user32.spec]
Added stubs LoadCursorFromFileW and LoadCursorFromFileA.
1998-06-14 17:24:15 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* SECURITY_IMPERSONATION_LEVEL
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef enum _SECURITY_IMPERSONATION_LEVEL {
|
2002-06-01 01:06:46 +02:00
|
|
|
SecurityAnonymous,
|
|
|
|
SecurityIdentification,
|
|
|
|
SecurityImpersonation,
|
|
|
|
SecurityDelegation
|
|
|
|
} SECURITY_IMPERSONATION_LEVEL, *PSECURITY_IMPERSONATION_LEVEL;
|
Release 980614
Sun Jun 15 10:30:35 1998 Andreas Mohr <100.30936@germany.net>
* [files/dos_fs.c] [files/file.c] [if1632/wprocs.spec]
[misc/aspi.c]
Added support for scanners that need Adaptec's ASPI2DOS.
* [graphics/env.c] [misc/printerdrv.c] [graphics/win16drv/init.c]
[if1632/gdi.spec] [include/gdi.h]
Enhanced printer support (especially Win95):
Drv[GS]etPrinterData, [GS]etEnvironment; added AbortProc handling.
* [misc/tapi32.c] [relay32/tapi32.spec]
Added some stubs.
* [configure.in] [graphics/fontengine.c] [include/windows.h]
[misc/comm.c] [misc/w32skrnl.c] [misc/win32s16.c]
Made Wine compile on HP-UX (just for fun ;)
* [controls/menu.c] [include/windows.h]
Complete rewrite of EnableMenuItem32.
Free Agent 32 still doesn't work :(
* [misc/version.c] [if1632/kernel.spec] [include/winbase.h]
Implemented GetVersionEx16.
* [misc/network.c] [if1632/user.spec]
Fixed arguments of WNetGetPropertyText.
* [misc/version.c] [relay32/comctl32.spec] [relay32/oleaut32.spec]
Implemented COMCTL32_DllGetVersion, OaBuildVersion.
* [win32/file.c]
Fixed UNC handling of CreateFile32.
Sat Jun 13 22:35:12 1998 Douglas Ridgway <ridgway@winehq.com>
* [Makefile.in] [Make.rules.in]
Added pattern for CVS merge files to 'make clean'
* [ole/olecli.c] [windows/scroll.c] [windows/grahics.c]
Add some DC handle unlocking. (When hdc's are always unlocked,
they can be made moveable.)
* [documentation/wine.texinfo]
Started a Wine Design chapter with discussion of
graphics driver model.
Sat Jun 13 11:19:25 1998 David Luyer <luyer@ucs.uwa.edu.au>
* [misc/main.c] [relay32/relay386.c]
Added new option -debugmsg +relay=.... or -debugmsg -relay=...
Fri Jun 12 22:56:09 1998 Marcus Meissner <marcus@jet.franken.de>
* [relay32/snoop.c][relay32/builtin.c][loader/pe_image.c]
Added inter win32 dll snooping. Use -debugmsg +snoop.
Number of arguments and string references are autodetected.
Some small bugfixes in the PE loader.
* [misc/system.c]
Disabled SystemTimers. They do not work with the current
%fs handling in the 32->16 relaycode. (helps labview)
* [msdos/dpmi.c][msdos/int2f.c][files/drive.c]
Added a monoton linear increasing memory allocator for DPMI (required
for LabView, HAFAS, ...)
mscdex handling in emulated realmode interrupts (for mcicda.drv)
allocate logical drives only once. (helps Myst)
* [files/profile.c]
Handle ^Z as space. Found on CDROMS (helps Myst Installer).
* [multimedia/mmio.c]
mmio* partially updated to win32. No funny additions.
* [windows/driver.c]
Added win32 driver handling (will be used for win32 multimedia/
msvideo drivers).
* [win32/device.c]
Added device handling (K32OBJ_DEVICE_IOCTL). Implemented
VTDAPI.5 (used by win95' WINMM.timeGetTime())
Fri Jun 12 18:01:18 1998 Rein Klazes <rklazes@casema.net>
* [ole/compobj.c relay32/ole32.spec]
Add a stub for CoLockObjectExternal32.
* [objects/clipping.c]
Fix in IntersectClipRect(), when there is no initial clipping
region.
* [graphics/x11drv/graphics.c]
Corrected several "one-off" errors for the Ellipse, Rectangle
and RoundRectangle (especially small ones) draw routines.
Arc and friends still have to be done.
Fri Jun 12 06:23:19 1998 Matthew Becker <mbecker@glasscity.net>
* [misc/ntdll.c]
Fixed some of the parameter counts.
* [misc/registry.c]
General cleanup, documentation.
Standard keys are allowed to be 'closed' and succeed.
* [misc/shell.c]
Check for correct return values from Reg* functions.
* [win32/newfns.c]
Added stubs for OpenDesktopA, SetThreadDesktop, and
SetUserObjectInformationA.
Wed Jun 10 20:28:08 1998 James Juran <jrj120@psu.edu>
* [debugger/break.c]
Fixed bug introduced in 980503 that broke the -debug command
line option for PE executable files.
* [configure.in] [include/acconfig.h] [include/debugtools.h]
[documentation/debug-msgs]
Added 'configure' options to compile out debugging messages.
Use --disable-debug to disable all debugging messages, and
--disable-trace to just disable TRACE messages. This results
in a stripped executable that is 15-20% smaller. This option
is very much untested--don't expect it to work.
* [documentation/debug-msgs] [documentation/debugging]
Minor updates.
* [*/*.c]
Fixed some compile warnings. This also includes the
compile_warnings_trivial patch from WineHQ.
Tue Jun 10 22:00:18 1998 Eric Kohl <ekohl@abo.rhein-zeitung.de>
* [windows/sysmetrics.c][include/sysmetrics.h]
Fixed some Win95 values.
* [windows/nonclient.c][include/windows.h]
Fixed some Win95 drawing bugs.
Added extended window style flags (WS_EX_xxx).
* [misc/printdrv.c][relay32/winspool.spec]
Added stubs for DeletePrinterDriver32A, DeleteMonitor32A
and DeletePort32A.
* [windows/mdi.c][include/windows.h][relay32/user32.spec]
Added stubs for CascadeWindows and TileWindows.
* [controls/toolbar.c][include/toolbar.h]
Fixed a few bugs and implemented new features.
* [misc/shellord.c][relay32/shell32.spec]
Added stubs for SHELL32_60, SHELL32_61 and SHELL32_184.
* [controls/comctl32undoc.c][relay32/comctl32.spec]
New file comctl32undoc.c. Contains undocumented functions
of COMCTL32.DLL. These functions are needed to run EXPLORER.EXE
IEXPLORE.EXE and TASKMAN.EXE.
* [controls/status.c]
Added text alignment.
Tue Jun 8 22:00:00 1998 Bertho Stultiens <bertho@akhphd.au.dk>
* [programs/*/Makefile.in]
Changed the rules to use wrc as resource compiler but
passing the source through gcc first for macro expansion.
* [programs/*/*.rc]
Added #include "windows.h" for the resource compiler in the
appropriate files.
* [tools/wrc/wrc.[ch]] [tools/wrc/writeres.c]
Added commandline option -A for autoregister code.
Corrected the underscore problem by checking the proper define
from config.h.
Sun Jun 7 22:09:29 1998 Pascal Cuoq <pcuoq@ens-lyon.fr>
* [ole/ole2nls.c] [memory/string.c]
Improved LCMapString32A, and changed CompareString32A,
lstrcmp, lstrcmpi to use it.
Sat Jun 6 19:00:50 1998 Martin Strmberg <ams@ludd.luth.se>
* [include/winnt.h]
Added typedefs for security and tokens.
Sat Jun 6 12:26:31 1998 Morten Welinder <terra@diku.dk>
* [objects/text.c]
Use debugstr_an in DrawText16.
* [loader/resource.c]
Use debugres_w in FindResourceEx32W. Avoid crashing during
debug when wm is NULL.
* [if1632/relay.c]
In RELAY_DebugCallTo16, send output to the right place and
avoid side effects in macro arguments.
Wed Jun 3 20:56:03 1998 Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
* [controls/scroll.c] [windows/nonclient.c]
Fix several off by one errors in scrollbar painting.
Tue Jun 2 23:58:59 1998 Insomnia (Stea Greene) <insomnia@core.binghamton.edu>
* [graphics/dsound.c]
Rewrote mixer code to handle panning and volume for 16->16, 16->8,
8->16, and 8->8 bit mixes. Conforms to DirectX's "logarithmic
hearing scale" as specified in M$VC docs. Still does not handle
mixing of different frequencies (I am still working on that).
Tested 16->16 extensively with StarCraft. Other mixing combinations
untested but should work fine. Still kind of a work in progress,
so be warned.
Tue Jun 2 03:31:33 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [tools/wrc/utils.c]
dup_basename: fix to strip directory.
Mon Jun 1 20:00:00 1998 Juergen Schmied <juergen.schmied@metronet.de>
* [include/windows.h] [objects/cursoricon.c] [relay32/user32.spec]
Added stubs LoadCursorFromFileW and LoadCursorFromFileA.
1998-06-14 17:24:15 +02:00
|
|
|
|
2006-05-08 09:33:17 +02:00
|
|
|
#define SECURITY_DYNAMIC_TRACKING (TRUE)
|
|
|
|
#define SECURITY_STATIC_TRACKING (FALSE)
|
Release 980614
Sun Jun 15 10:30:35 1998 Andreas Mohr <100.30936@germany.net>
* [files/dos_fs.c] [files/file.c] [if1632/wprocs.spec]
[misc/aspi.c]
Added support for scanners that need Adaptec's ASPI2DOS.
* [graphics/env.c] [misc/printerdrv.c] [graphics/win16drv/init.c]
[if1632/gdi.spec] [include/gdi.h]
Enhanced printer support (especially Win95):
Drv[GS]etPrinterData, [GS]etEnvironment; added AbortProc handling.
* [misc/tapi32.c] [relay32/tapi32.spec]
Added some stubs.
* [configure.in] [graphics/fontengine.c] [include/windows.h]
[misc/comm.c] [misc/w32skrnl.c] [misc/win32s16.c]
Made Wine compile on HP-UX (just for fun ;)
* [controls/menu.c] [include/windows.h]
Complete rewrite of EnableMenuItem32.
Free Agent 32 still doesn't work :(
* [misc/version.c] [if1632/kernel.spec] [include/winbase.h]
Implemented GetVersionEx16.
* [misc/network.c] [if1632/user.spec]
Fixed arguments of WNetGetPropertyText.
* [misc/version.c] [relay32/comctl32.spec] [relay32/oleaut32.spec]
Implemented COMCTL32_DllGetVersion, OaBuildVersion.
* [win32/file.c]
Fixed UNC handling of CreateFile32.
Sat Jun 13 22:35:12 1998 Douglas Ridgway <ridgway@winehq.com>
* [Makefile.in] [Make.rules.in]
Added pattern for CVS merge files to 'make clean'
* [ole/olecli.c] [windows/scroll.c] [windows/grahics.c]
Add some DC handle unlocking. (When hdc's are always unlocked,
they can be made moveable.)
* [documentation/wine.texinfo]
Started a Wine Design chapter with discussion of
graphics driver model.
Sat Jun 13 11:19:25 1998 David Luyer <luyer@ucs.uwa.edu.au>
* [misc/main.c] [relay32/relay386.c]
Added new option -debugmsg +relay=.... or -debugmsg -relay=...
Fri Jun 12 22:56:09 1998 Marcus Meissner <marcus@jet.franken.de>
* [relay32/snoop.c][relay32/builtin.c][loader/pe_image.c]
Added inter win32 dll snooping. Use -debugmsg +snoop.
Number of arguments and string references are autodetected.
Some small bugfixes in the PE loader.
* [misc/system.c]
Disabled SystemTimers. They do not work with the current
%fs handling in the 32->16 relaycode. (helps labview)
* [msdos/dpmi.c][msdos/int2f.c][files/drive.c]
Added a monoton linear increasing memory allocator for DPMI (required
for LabView, HAFAS, ...)
mscdex handling in emulated realmode interrupts (for mcicda.drv)
allocate logical drives only once. (helps Myst)
* [files/profile.c]
Handle ^Z as space. Found on CDROMS (helps Myst Installer).
* [multimedia/mmio.c]
mmio* partially updated to win32. No funny additions.
* [windows/driver.c]
Added win32 driver handling (will be used for win32 multimedia/
msvideo drivers).
* [win32/device.c]
Added device handling (K32OBJ_DEVICE_IOCTL). Implemented
VTDAPI.5 (used by win95' WINMM.timeGetTime())
Fri Jun 12 18:01:18 1998 Rein Klazes <rklazes@casema.net>
* [ole/compobj.c relay32/ole32.spec]
Add a stub for CoLockObjectExternal32.
* [objects/clipping.c]
Fix in IntersectClipRect(), when there is no initial clipping
region.
* [graphics/x11drv/graphics.c]
Corrected several "one-off" errors for the Ellipse, Rectangle
and RoundRectangle (especially small ones) draw routines.
Arc and friends still have to be done.
Fri Jun 12 06:23:19 1998 Matthew Becker <mbecker@glasscity.net>
* [misc/ntdll.c]
Fixed some of the parameter counts.
* [misc/registry.c]
General cleanup, documentation.
Standard keys are allowed to be 'closed' and succeed.
* [misc/shell.c]
Check for correct return values from Reg* functions.
* [win32/newfns.c]
Added stubs for OpenDesktopA, SetThreadDesktop, and
SetUserObjectInformationA.
Wed Jun 10 20:28:08 1998 James Juran <jrj120@psu.edu>
* [debugger/break.c]
Fixed bug introduced in 980503 that broke the -debug command
line option for PE executable files.
* [configure.in] [include/acconfig.h] [include/debugtools.h]
[documentation/debug-msgs]
Added 'configure' options to compile out debugging messages.
Use --disable-debug to disable all debugging messages, and
--disable-trace to just disable TRACE messages. This results
in a stripped executable that is 15-20% smaller. This option
is very much untested--don't expect it to work.
* [documentation/debug-msgs] [documentation/debugging]
Minor updates.
* [*/*.c]
Fixed some compile warnings. This also includes the
compile_warnings_trivial patch from WineHQ.
Tue Jun 10 22:00:18 1998 Eric Kohl <ekohl@abo.rhein-zeitung.de>
* [windows/sysmetrics.c][include/sysmetrics.h]
Fixed some Win95 values.
* [windows/nonclient.c][include/windows.h]
Fixed some Win95 drawing bugs.
Added extended window style flags (WS_EX_xxx).
* [misc/printdrv.c][relay32/winspool.spec]
Added stubs for DeletePrinterDriver32A, DeleteMonitor32A
and DeletePort32A.
* [windows/mdi.c][include/windows.h][relay32/user32.spec]
Added stubs for CascadeWindows and TileWindows.
* [controls/toolbar.c][include/toolbar.h]
Fixed a few bugs and implemented new features.
* [misc/shellord.c][relay32/shell32.spec]
Added stubs for SHELL32_60, SHELL32_61 and SHELL32_184.
* [controls/comctl32undoc.c][relay32/comctl32.spec]
New file comctl32undoc.c. Contains undocumented functions
of COMCTL32.DLL. These functions are needed to run EXPLORER.EXE
IEXPLORE.EXE and TASKMAN.EXE.
* [controls/status.c]
Added text alignment.
Tue Jun 8 22:00:00 1998 Bertho Stultiens <bertho@akhphd.au.dk>
* [programs/*/Makefile.in]
Changed the rules to use wrc as resource compiler but
passing the source through gcc first for macro expansion.
* [programs/*/*.rc]
Added #include "windows.h" for the resource compiler in the
appropriate files.
* [tools/wrc/wrc.[ch]] [tools/wrc/writeres.c]
Added commandline option -A for autoregister code.
Corrected the underscore problem by checking the proper define
from config.h.
Sun Jun 7 22:09:29 1998 Pascal Cuoq <pcuoq@ens-lyon.fr>
* [ole/ole2nls.c] [memory/string.c]
Improved LCMapString32A, and changed CompareString32A,
lstrcmp, lstrcmpi to use it.
Sat Jun 6 19:00:50 1998 Martin Strmberg <ams@ludd.luth.se>
* [include/winnt.h]
Added typedefs for security and tokens.
Sat Jun 6 12:26:31 1998 Morten Welinder <terra@diku.dk>
* [objects/text.c]
Use debugstr_an in DrawText16.
* [loader/resource.c]
Use debugres_w in FindResourceEx32W. Avoid crashing during
debug when wm is NULL.
* [if1632/relay.c]
In RELAY_DebugCallTo16, send output to the right place and
avoid side effects in macro arguments.
Wed Jun 3 20:56:03 1998 Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
* [controls/scroll.c] [windows/nonclient.c]
Fix several off by one errors in scrollbar painting.
Tue Jun 2 23:58:59 1998 Insomnia (Stea Greene) <insomnia@core.binghamton.edu>
* [graphics/dsound.c]
Rewrote mixer code to handle panning and volume for 16->16, 16->8,
8->16, and 8->8 bit mixes. Conforms to DirectX's "logarithmic
hearing scale" as specified in M$VC docs. Still does not handle
mixing of different frequencies (I am still working on that).
Tested 16->16 extensively with StarCraft. Other mixing combinations
untested but should work fine. Still kind of a work in progress,
so be warned.
Tue Jun 2 03:31:33 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [tools/wrc/utils.c]
dup_basename: fix to strip directory.
Mon Jun 1 20:00:00 1998 Juergen Schmied <juergen.schmied@metronet.de>
* [include/windows.h] [objects/cursoricon.c] [relay32/user32.spec]
Added stubs LoadCursorFromFileW and LoadCursorFromFileA.
1998-06-14 17:24:15 +02:00
|
|
|
|
1999-03-13 13:53:39 +01:00
|
|
|
typedef BOOLEAN SECURITY_CONTEXT_TRACKING_MODE,
|
|
|
|
* PSECURITY_CONTEXT_TRACKING_MODE;
|
1999-04-22 18:27:50 +02:00
|
|
|
/*
|
|
|
|
* Quality of Service
|
|
|
|
*/
|
1999-03-13 13:53:39 +01:00
|
|
|
|
|
|
|
typedef struct _SECURITY_QUALITY_OF_SERVICE {
|
|
|
|
DWORD Length;
|
|
|
|
SECURITY_IMPERSONATION_LEVEL ImpersonationLevel;
|
|
|
|
SECURITY_CONTEXT_TRACKING_MODE ContextTrackingMode;
|
2001-11-23 19:44:43 +01:00
|
|
|
BOOLEAN EffectiveOnly;
|
1999-03-13 13:53:39 +01:00
|
|
|
} SECURITY_QUALITY_OF_SERVICE, *PSECURITY_QUALITY_OF_SERVICE;
|
1999-02-17 18:45:54 +01:00
|
|
|
|
Release 980614
Sun Jun 15 10:30:35 1998 Andreas Mohr <100.30936@germany.net>
* [files/dos_fs.c] [files/file.c] [if1632/wprocs.spec]
[misc/aspi.c]
Added support for scanners that need Adaptec's ASPI2DOS.
* [graphics/env.c] [misc/printerdrv.c] [graphics/win16drv/init.c]
[if1632/gdi.spec] [include/gdi.h]
Enhanced printer support (especially Win95):
Drv[GS]etPrinterData, [GS]etEnvironment; added AbortProc handling.
* [misc/tapi32.c] [relay32/tapi32.spec]
Added some stubs.
* [configure.in] [graphics/fontengine.c] [include/windows.h]
[misc/comm.c] [misc/w32skrnl.c] [misc/win32s16.c]
Made Wine compile on HP-UX (just for fun ;)
* [controls/menu.c] [include/windows.h]
Complete rewrite of EnableMenuItem32.
Free Agent 32 still doesn't work :(
* [misc/version.c] [if1632/kernel.spec] [include/winbase.h]
Implemented GetVersionEx16.
* [misc/network.c] [if1632/user.spec]
Fixed arguments of WNetGetPropertyText.
* [misc/version.c] [relay32/comctl32.spec] [relay32/oleaut32.spec]
Implemented COMCTL32_DllGetVersion, OaBuildVersion.
* [win32/file.c]
Fixed UNC handling of CreateFile32.
Sat Jun 13 22:35:12 1998 Douglas Ridgway <ridgway@winehq.com>
* [Makefile.in] [Make.rules.in]
Added pattern for CVS merge files to 'make clean'
* [ole/olecli.c] [windows/scroll.c] [windows/grahics.c]
Add some DC handle unlocking. (When hdc's are always unlocked,
they can be made moveable.)
* [documentation/wine.texinfo]
Started a Wine Design chapter with discussion of
graphics driver model.
Sat Jun 13 11:19:25 1998 David Luyer <luyer@ucs.uwa.edu.au>
* [misc/main.c] [relay32/relay386.c]
Added new option -debugmsg +relay=.... or -debugmsg -relay=...
Fri Jun 12 22:56:09 1998 Marcus Meissner <marcus@jet.franken.de>
* [relay32/snoop.c][relay32/builtin.c][loader/pe_image.c]
Added inter win32 dll snooping. Use -debugmsg +snoop.
Number of arguments and string references are autodetected.
Some small bugfixes in the PE loader.
* [misc/system.c]
Disabled SystemTimers. They do not work with the current
%fs handling in the 32->16 relaycode. (helps labview)
* [msdos/dpmi.c][msdos/int2f.c][files/drive.c]
Added a monoton linear increasing memory allocator for DPMI (required
for LabView, HAFAS, ...)
mscdex handling in emulated realmode interrupts (for mcicda.drv)
allocate logical drives only once. (helps Myst)
* [files/profile.c]
Handle ^Z as space. Found on CDROMS (helps Myst Installer).
* [multimedia/mmio.c]
mmio* partially updated to win32. No funny additions.
* [windows/driver.c]
Added win32 driver handling (will be used for win32 multimedia/
msvideo drivers).
* [win32/device.c]
Added device handling (K32OBJ_DEVICE_IOCTL). Implemented
VTDAPI.5 (used by win95' WINMM.timeGetTime())
Fri Jun 12 18:01:18 1998 Rein Klazes <rklazes@casema.net>
* [ole/compobj.c relay32/ole32.spec]
Add a stub for CoLockObjectExternal32.
* [objects/clipping.c]
Fix in IntersectClipRect(), when there is no initial clipping
region.
* [graphics/x11drv/graphics.c]
Corrected several "one-off" errors for the Ellipse, Rectangle
and RoundRectangle (especially small ones) draw routines.
Arc and friends still have to be done.
Fri Jun 12 06:23:19 1998 Matthew Becker <mbecker@glasscity.net>
* [misc/ntdll.c]
Fixed some of the parameter counts.
* [misc/registry.c]
General cleanup, documentation.
Standard keys are allowed to be 'closed' and succeed.
* [misc/shell.c]
Check for correct return values from Reg* functions.
* [win32/newfns.c]
Added stubs for OpenDesktopA, SetThreadDesktop, and
SetUserObjectInformationA.
Wed Jun 10 20:28:08 1998 James Juran <jrj120@psu.edu>
* [debugger/break.c]
Fixed bug introduced in 980503 that broke the -debug command
line option for PE executable files.
* [configure.in] [include/acconfig.h] [include/debugtools.h]
[documentation/debug-msgs]
Added 'configure' options to compile out debugging messages.
Use --disable-debug to disable all debugging messages, and
--disable-trace to just disable TRACE messages. This results
in a stripped executable that is 15-20% smaller. This option
is very much untested--don't expect it to work.
* [documentation/debug-msgs] [documentation/debugging]
Minor updates.
* [*/*.c]
Fixed some compile warnings. This also includes the
compile_warnings_trivial patch from WineHQ.
Tue Jun 10 22:00:18 1998 Eric Kohl <ekohl@abo.rhein-zeitung.de>
* [windows/sysmetrics.c][include/sysmetrics.h]
Fixed some Win95 values.
* [windows/nonclient.c][include/windows.h]
Fixed some Win95 drawing bugs.
Added extended window style flags (WS_EX_xxx).
* [misc/printdrv.c][relay32/winspool.spec]
Added stubs for DeletePrinterDriver32A, DeleteMonitor32A
and DeletePort32A.
* [windows/mdi.c][include/windows.h][relay32/user32.spec]
Added stubs for CascadeWindows and TileWindows.
* [controls/toolbar.c][include/toolbar.h]
Fixed a few bugs and implemented new features.
* [misc/shellord.c][relay32/shell32.spec]
Added stubs for SHELL32_60, SHELL32_61 and SHELL32_184.
* [controls/comctl32undoc.c][relay32/comctl32.spec]
New file comctl32undoc.c. Contains undocumented functions
of COMCTL32.DLL. These functions are needed to run EXPLORER.EXE
IEXPLORE.EXE and TASKMAN.EXE.
* [controls/status.c]
Added text alignment.
Tue Jun 8 22:00:00 1998 Bertho Stultiens <bertho@akhphd.au.dk>
* [programs/*/Makefile.in]
Changed the rules to use wrc as resource compiler but
passing the source through gcc first for macro expansion.
* [programs/*/*.rc]
Added #include "windows.h" for the resource compiler in the
appropriate files.
* [tools/wrc/wrc.[ch]] [tools/wrc/writeres.c]
Added commandline option -A for autoregister code.
Corrected the underscore problem by checking the proper define
from config.h.
Sun Jun 7 22:09:29 1998 Pascal Cuoq <pcuoq@ens-lyon.fr>
* [ole/ole2nls.c] [memory/string.c]
Improved LCMapString32A, and changed CompareString32A,
lstrcmp, lstrcmpi to use it.
Sat Jun 6 19:00:50 1998 Martin Strmberg <ams@ludd.luth.se>
* [include/winnt.h]
Added typedefs for security and tokens.
Sat Jun 6 12:26:31 1998 Morten Welinder <terra@diku.dk>
* [objects/text.c]
Use debugstr_an in DrawText16.
* [loader/resource.c]
Use debugres_w in FindResourceEx32W. Avoid crashing during
debug when wm is NULL.
* [if1632/relay.c]
In RELAY_DebugCallTo16, send output to the right place and
avoid side effects in macro arguments.
Wed Jun 3 20:56:03 1998 Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
* [controls/scroll.c] [windows/nonclient.c]
Fix several off by one errors in scrollbar painting.
Tue Jun 2 23:58:59 1998 Insomnia (Stea Greene) <insomnia@core.binghamton.edu>
* [graphics/dsound.c]
Rewrote mixer code to handle panning and volume for 16->16, 16->8,
8->16, and 8->8 bit mixes. Conforms to DirectX's "logarithmic
hearing scale" as specified in M$VC docs. Still does not handle
mixing of different frequencies (I am still working on that).
Tested 16->16 extensively with StarCraft. Other mixing combinations
untested but should work fine. Still kind of a work in progress,
so be warned.
Tue Jun 2 03:31:33 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [tools/wrc/utils.c]
dup_basename: fix to strip directory.
Mon Jun 1 20:00:00 1998 Juergen Schmied <juergen.schmied@metronet.de>
* [include/windows.h] [objects/cursoricon.c] [relay32/user32.spec]
Added stubs LoadCursorFromFileW and LoadCursorFromFileA.
1998-06-14 17:24:15 +02:00
|
|
|
/*
|
|
|
|
* TOKEN_STATISTICS
|
|
|
|
*/
|
|
|
|
|
2004-09-01 06:58:53 +02:00
|
|
|
#include <pshpack4.h>
|
Release 980614
Sun Jun 15 10:30:35 1998 Andreas Mohr <100.30936@germany.net>
* [files/dos_fs.c] [files/file.c] [if1632/wprocs.spec]
[misc/aspi.c]
Added support for scanners that need Adaptec's ASPI2DOS.
* [graphics/env.c] [misc/printerdrv.c] [graphics/win16drv/init.c]
[if1632/gdi.spec] [include/gdi.h]
Enhanced printer support (especially Win95):
Drv[GS]etPrinterData, [GS]etEnvironment; added AbortProc handling.
* [misc/tapi32.c] [relay32/tapi32.spec]
Added some stubs.
* [configure.in] [graphics/fontengine.c] [include/windows.h]
[misc/comm.c] [misc/w32skrnl.c] [misc/win32s16.c]
Made Wine compile on HP-UX (just for fun ;)
* [controls/menu.c] [include/windows.h]
Complete rewrite of EnableMenuItem32.
Free Agent 32 still doesn't work :(
* [misc/version.c] [if1632/kernel.spec] [include/winbase.h]
Implemented GetVersionEx16.
* [misc/network.c] [if1632/user.spec]
Fixed arguments of WNetGetPropertyText.
* [misc/version.c] [relay32/comctl32.spec] [relay32/oleaut32.spec]
Implemented COMCTL32_DllGetVersion, OaBuildVersion.
* [win32/file.c]
Fixed UNC handling of CreateFile32.
Sat Jun 13 22:35:12 1998 Douglas Ridgway <ridgway@winehq.com>
* [Makefile.in] [Make.rules.in]
Added pattern for CVS merge files to 'make clean'
* [ole/olecli.c] [windows/scroll.c] [windows/grahics.c]
Add some DC handle unlocking. (When hdc's are always unlocked,
they can be made moveable.)
* [documentation/wine.texinfo]
Started a Wine Design chapter with discussion of
graphics driver model.
Sat Jun 13 11:19:25 1998 David Luyer <luyer@ucs.uwa.edu.au>
* [misc/main.c] [relay32/relay386.c]
Added new option -debugmsg +relay=.... or -debugmsg -relay=...
Fri Jun 12 22:56:09 1998 Marcus Meissner <marcus@jet.franken.de>
* [relay32/snoop.c][relay32/builtin.c][loader/pe_image.c]
Added inter win32 dll snooping. Use -debugmsg +snoop.
Number of arguments and string references are autodetected.
Some small bugfixes in the PE loader.
* [misc/system.c]
Disabled SystemTimers. They do not work with the current
%fs handling in the 32->16 relaycode. (helps labview)
* [msdos/dpmi.c][msdos/int2f.c][files/drive.c]
Added a monoton linear increasing memory allocator for DPMI (required
for LabView, HAFAS, ...)
mscdex handling in emulated realmode interrupts (for mcicda.drv)
allocate logical drives only once. (helps Myst)
* [files/profile.c]
Handle ^Z as space. Found on CDROMS (helps Myst Installer).
* [multimedia/mmio.c]
mmio* partially updated to win32. No funny additions.
* [windows/driver.c]
Added win32 driver handling (will be used for win32 multimedia/
msvideo drivers).
* [win32/device.c]
Added device handling (K32OBJ_DEVICE_IOCTL). Implemented
VTDAPI.5 (used by win95' WINMM.timeGetTime())
Fri Jun 12 18:01:18 1998 Rein Klazes <rklazes@casema.net>
* [ole/compobj.c relay32/ole32.spec]
Add a stub for CoLockObjectExternal32.
* [objects/clipping.c]
Fix in IntersectClipRect(), when there is no initial clipping
region.
* [graphics/x11drv/graphics.c]
Corrected several "one-off" errors for the Ellipse, Rectangle
and RoundRectangle (especially small ones) draw routines.
Arc and friends still have to be done.
Fri Jun 12 06:23:19 1998 Matthew Becker <mbecker@glasscity.net>
* [misc/ntdll.c]
Fixed some of the parameter counts.
* [misc/registry.c]
General cleanup, documentation.
Standard keys are allowed to be 'closed' and succeed.
* [misc/shell.c]
Check for correct return values from Reg* functions.
* [win32/newfns.c]
Added stubs for OpenDesktopA, SetThreadDesktop, and
SetUserObjectInformationA.
Wed Jun 10 20:28:08 1998 James Juran <jrj120@psu.edu>
* [debugger/break.c]
Fixed bug introduced in 980503 that broke the -debug command
line option for PE executable files.
* [configure.in] [include/acconfig.h] [include/debugtools.h]
[documentation/debug-msgs]
Added 'configure' options to compile out debugging messages.
Use --disable-debug to disable all debugging messages, and
--disable-trace to just disable TRACE messages. This results
in a stripped executable that is 15-20% smaller. This option
is very much untested--don't expect it to work.
* [documentation/debug-msgs] [documentation/debugging]
Minor updates.
* [*/*.c]
Fixed some compile warnings. This also includes the
compile_warnings_trivial patch from WineHQ.
Tue Jun 10 22:00:18 1998 Eric Kohl <ekohl@abo.rhein-zeitung.de>
* [windows/sysmetrics.c][include/sysmetrics.h]
Fixed some Win95 values.
* [windows/nonclient.c][include/windows.h]
Fixed some Win95 drawing bugs.
Added extended window style flags (WS_EX_xxx).
* [misc/printdrv.c][relay32/winspool.spec]
Added stubs for DeletePrinterDriver32A, DeleteMonitor32A
and DeletePort32A.
* [windows/mdi.c][include/windows.h][relay32/user32.spec]
Added stubs for CascadeWindows and TileWindows.
* [controls/toolbar.c][include/toolbar.h]
Fixed a few bugs and implemented new features.
* [misc/shellord.c][relay32/shell32.spec]
Added stubs for SHELL32_60, SHELL32_61 and SHELL32_184.
* [controls/comctl32undoc.c][relay32/comctl32.spec]
New file comctl32undoc.c. Contains undocumented functions
of COMCTL32.DLL. These functions are needed to run EXPLORER.EXE
IEXPLORE.EXE and TASKMAN.EXE.
* [controls/status.c]
Added text alignment.
Tue Jun 8 22:00:00 1998 Bertho Stultiens <bertho@akhphd.au.dk>
* [programs/*/Makefile.in]
Changed the rules to use wrc as resource compiler but
passing the source through gcc first for macro expansion.
* [programs/*/*.rc]
Added #include "windows.h" for the resource compiler in the
appropriate files.
* [tools/wrc/wrc.[ch]] [tools/wrc/writeres.c]
Added commandline option -A for autoregister code.
Corrected the underscore problem by checking the proper define
from config.h.
Sun Jun 7 22:09:29 1998 Pascal Cuoq <pcuoq@ens-lyon.fr>
* [ole/ole2nls.c] [memory/string.c]
Improved LCMapString32A, and changed CompareString32A,
lstrcmp, lstrcmpi to use it.
Sat Jun 6 19:00:50 1998 Martin Strmberg <ams@ludd.luth.se>
* [include/winnt.h]
Added typedefs for security and tokens.
Sat Jun 6 12:26:31 1998 Morten Welinder <terra@diku.dk>
* [objects/text.c]
Use debugstr_an in DrawText16.
* [loader/resource.c]
Use debugres_w in FindResourceEx32W. Avoid crashing during
debug when wm is NULL.
* [if1632/relay.c]
In RELAY_DebugCallTo16, send output to the right place and
avoid side effects in macro arguments.
Wed Jun 3 20:56:03 1998 Huw D M Davies <daviesh@abacus.physics.ox.ac.uk>
* [controls/scroll.c] [windows/nonclient.c]
Fix several off by one errors in scrollbar painting.
Tue Jun 2 23:58:59 1998 Insomnia (Stea Greene) <insomnia@core.binghamton.edu>
* [graphics/dsound.c]
Rewrote mixer code to handle panning and volume for 16->16, 16->8,
8->16, and 8->8 bit mixes. Conforms to DirectX's "logarithmic
hearing scale" as specified in M$VC docs. Still does not handle
mixing of different frequencies (I am still working on that).
Tested 16->16 extensively with StarCraft. Other mixing combinations
untested but should work fine. Still kind of a work in progress,
so be warned.
Tue Jun 2 03:31:33 1998 Alexander V. Lukyanov <lav@long.yar.ru>
* [tools/wrc/utils.c]
dup_basename: fix to strip directory.
Mon Jun 1 20:00:00 1998 Juergen Schmied <juergen.schmied@metronet.de>
* [include/windows.h] [objects/cursoricon.c] [relay32/user32.spec]
Added stubs LoadCursorFromFileW and LoadCursorFromFileA.
1998-06-14 17:24:15 +02:00
|
|
|
typedef struct _TOKEN_STATISTICS {
|
2002-06-01 01:06:46 +02:00
|
|
|
LUID TokenId;
|
|
|
|
LUID AuthenticationId;
|
|
|
|
LARGE_INTEGER ExpirationTime;
|
|
|
|
TOKEN_TYPE TokenType;
|
|
|
|
SECURITY_IMPERSONATION_LEVEL ImpersonationLevel;
|
|
|
|
DWORD DynamicCharged;
|
|
|
|
DWORD DynamicAvailable;
|
|
|
|
DWORD GroupCount;
|
|
|
|
DWORD PrivilegeCount;
|
|
|
|
LUID ModifiedId;
|
|
|
|
} TOKEN_STATISTICS;
|
2004-09-01 06:58:53 +02:00
|
|
|
#include <poppack.h>
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2010-08-22 11:31:47 +02:00
|
|
|
typedef struct _TOKEN_GROUPS_AND_PRIVILEGES {
|
|
|
|
DWORD SidCount;
|
|
|
|
DWORD SidLength;
|
|
|
|
PSID_AND_ATTRIBUTES Sids;
|
|
|
|
DWORD RestrictedSidCount;
|
|
|
|
DWORD RestrictedSidLength;
|
|
|
|
PSID_AND_ATTRIBUTES RestrictedSids;
|
|
|
|
DWORD PrivilegeCount;
|
|
|
|
DWORD PrivilegeLength;
|
|
|
|
PLUID_AND_ATTRIBUTES Privileges;
|
|
|
|
LUID AuthenticationId;
|
|
|
|
} TOKEN_GROUPS_AND_PRIVILEGES, * PTOKEN_GROUPS_AND_PRIVILEGES;
|
|
|
|
|
|
|
|
typedef struct _TOKEN_ORIGIN {
|
|
|
|
LUID OriginatingLogonSession;
|
|
|
|
} TOKEN_ORIGIN, * PTOKEN_ORIGIN;
|
|
|
|
|
|
|
|
typedef struct _TOKEN_LINKED_TOKEN {
|
|
|
|
HANDLE LinkedToken;
|
|
|
|
} TOKEN_LINKED_TOKEN, * PTOKEN_LINKED_TOKEN;
|
|
|
|
|
|
|
|
typedef struct _TOKEN_ELEVATION {
|
|
|
|
DWORD TokenIsElevated;
|
|
|
|
} TOKEN_ELEVATION, * PTOKEN_ELEVATION;
|
|
|
|
|
2012-07-30 18:08:33 +02:00
|
|
|
typedef struct _TOKEN_MANDATORY_LABEL {
|
|
|
|
SID_AND_ATTRIBUTES Label;
|
|
|
|
} TOKEN_MANDATORY_LABEL, * PTOKEN_MANDATORY_LABEL;
|
2010-08-22 11:31:47 +02:00
|
|
|
|
2014-05-31 02:08:45 +02:00
|
|
|
typedef struct _TOKEN_APPCONTAINER_INFORMATION {
|
|
|
|
PSID TokenAppContainer;
|
|
|
|
} TOKEN_APPCONTAINER_INFORMATION, * PTOKEN_APPCONTAINER_INFORMATION;
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
/*
|
|
|
|
* ACLs of NT
|
1999-03-09 18:46:10 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* ACEs, directly starting after an ACL */
|
|
|
|
typedef struct _ACE_HEADER {
|
|
|
|
BYTE AceType;
|
|
|
|
BYTE AceFlags;
|
|
|
|
WORD AceSize;
|
|
|
|
} ACE_HEADER,*PACE_HEADER;
|
|
|
|
|
|
|
|
/* AceType */
|
|
|
|
#define ACCESS_ALLOWED_ACE_TYPE 0
|
|
|
|
#define ACCESS_DENIED_ACE_TYPE 1
|
|
|
|
#define SYSTEM_AUDIT_ACE_TYPE 2
|
|
|
|
#define SYSTEM_ALARM_ACE_TYPE 3
|
2015-04-16 17:02:29 +02:00
|
|
|
#define SYSTEM_MANDATORY_LABEL_ACE_TYPE 0x11
|
1999-03-09 18:46:10 +01:00
|
|
|
|
|
|
|
/* inherit AceFlags */
|
|
|
|
#define OBJECT_INHERIT_ACE 0x01
|
|
|
|
#define CONTAINER_INHERIT_ACE 0x02
|
|
|
|
#define NO_PROPAGATE_INHERIT_ACE 0x04
|
|
|
|
#define INHERIT_ONLY_ACE 0x08
|
2003-11-11 23:03:24 +01:00
|
|
|
#define INHERITED_ACE 0x10
|
2007-09-25 20:38:23 +02:00
|
|
|
#define VALID_INHERIT_FLAGS 0x1F
|
1999-03-09 18:46:10 +01:00
|
|
|
|
|
|
|
/* AceFlags mask for what events we (should) audit */
|
|
|
|
#define SUCCESSFUL_ACCESS_ACE_FLAG 0x40
|
|
|
|
#define FAILED_ACCESS_ACE_FLAG 0x80
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
/* different ACEs depending on AceType
|
1999-03-09 18:46:10 +01:00
|
|
|
* SidStart marks the begin of a SID
|
|
|
|
* so the thing finally looks like this:
|
|
|
|
* 0: ACE_HEADER
|
|
|
|
* 4: ACCESS_MASK
|
|
|
|
* 8... : SID
|
|
|
|
*/
|
|
|
|
typedef struct _ACCESS_ALLOWED_ACE {
|
|
|
|
ACE_HEADER Header;
|
|
|
|
DWORD Mask;
|
|
|
|
DWORD SidStart;
|
|
|
|
} ACCESS_ALLOWED_ACE,*PACCESS_ALLOWED_ACE;
|
|
|
|
|
|
|
|
typedef struct _ACCESS_DENIED_ACE {
|
|
|
|
ACE_HEADER Header;
|
|
|
|
DWORD Mask;
|
|
|
|
DWORD SidStart;
|
|
|
|
} ACCESS_DENIED_ACE,*PACCESS_DENIED_ACE;
|
|
|
|
|
|
|
|
typedef struct _SYSTEM_AUDIT_ACE {
|
|
|
|
ACE_HEADER Header;
|
|
|
|
DWORD Mask;
|
|
|
|
DWORD SidStart;
|
|
|
|
} SYSTEM_AUDIT_ACE,*PSYSTEM_AUDIT_ACE;
|
|
|
|
|
|
|
|
typedef struct _SYSTEM_ALARM_ACE {
|
|
|
|
ACE_HEADER Header;
|
|
|
|
DWORD Mask;
|
|
|
|
DWORD SidStart;
|
|
|
|
} SYSTEM_ALARM_ACE,*PSYSTEM_ALARM_ACE;
|
|
|
|
|
2015-04-16 17:02:29 +02:00
|
|
|
typedef struct _SYSTEM_MANDATORY_LABEL_ACE {
|
|
|
|
ACE_HEADER Header;
|
|
|
|
ACCESS_MASK Mask;
|
|
|
|
DWORD SidStart;
|
|
|
|
} SYSTEM_MANDATORY_LABEL_ACE,*PSYSTEM_MANDATORY_LABEL_ACE;
|
|
|
|
|
|
|
|
#define SYSTEM_MANDATORY_LABEL_NO_WRITE_UP 0x1
|
|
|
|
#define SYSTEM_MANDATORY_LABEL_NO_READ_UP 0x2
|
|
|
|
#define SYSTEM_MANDATORY_LABEL_NO_EXECUTE_UP 0x4
|
|
|
|
|
1999-03-09 18:46:10 +01:00
|
|
|
typedef enum tagSID_NAME_USE {
|
|
|
|
SidTypeUser = 1,
|
|
|
|
SidTypeGroup,
|
|
|
|
SidTypeDomain,
|
|
|
|
SidTypeAlias,
|
|
|
|
SidTypeWellKnownGroup,
|
|
|
|
SidTypeDeletedAccount,
|
|
|
|
SidTypeInvalid,
|
|
|
|
SidTypeUnknown
|
|
|
|
} SID_NAME_USE,*PSID_NAME_USE;
|
|
|
|
|
2006-03-26 13:39:58 +02:00
|
|
|
#define ACE_OBJECT_TYPE_PRESENT 0x1
|
|
|
|
#define ACE_INHERITED_OBJECT_TYPE_PRESENT 0x2
|
|
|
|
|
1998-02-15 20:40:49 +01:00
|
|
|
/* Access rights */
|
|
|
|
|
2000-05-23 23:13:04 +02:00
|
|
|
/* DELETE may be already defined via /usr/include/arpa/nameser_compat.h */
|
|
|
|
#undef DELETE
|
1998-02-15 20:40:49 +01:00
|
|
|
#define DELETE 0x00010000
|
|
|
|
#define READ_CONTROL 0x00020000
|
|
|
|
#define WRITE_DAC 0x00040000
|
|
|
|
#define WRITE_OWNER 0x00080000
|
|
|
|
#define SYNCHRONIZE 0x00100000
|
|
|
|
#define STANDARD_RIGHTS_REQUIRED 0x000f0000
|
|
|
|
|
|
|
|
#define STANDARD_RIGHTS_READ READ_CONTROL
|
|
|
|
#define STANDARD_RIGHTS_WRITE READ_CONTROL
|
|
|
|
#define STANDARD_RIGHTS_EXECUTE READ_CONTROL
|
|
|
|
|
|
|
|
#define STANDARD_RIGHTS_ALL 0x001f0000
|
|
|
|
|
|
|
|
#define SPECIFIC_RIGHTS_ALL 0x0000ffff
|
|
|
|
|
|
|
|
#define GENERIC_READ 0x80000000
|
|
|
|
#define GENERIC_WRITE 0x40000000
|
|
|
|
#define GENERIC_EXECUTE 0x20000000
|
|
|
|
#define GENERIC_ALL 0x10000000
|
|
|
|
|
1999-11-23 20:41:34 +01:00
|
|
|
#define MAXIMUM_ALLOWED 0x02000000
|
|
|
|
#define ACCESS_SYSTEM_SECURITY 0x01000000
|
|
|
|
|
2005-02-16 18:52:22 +01:00
|
|
|
#define EVENT_QUERY_STATE 0x0001
|
1998-02-15 20:40:49 +01:00
|
|
|
#define EVENT_MODIFY_STATE 0x0002
|
|
|
|
#define EVENT_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED|SYNCHRONIZE|0x3)
|
|
|
|
|
2013-12-25 05:28:36 +01:00
|
|
|
#define SEMAPHORE_QUERY_STATE 0x0001
|
1998-02-15 20:40:49 +01:00
|
|
|
#define SEMAPHORE_MODIFY_STATE 0x0002
|
|
|
|
#define SEMAPHORE_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED|SYNCHRONIZE|0x3)
|
|
|
|
|
2012-04-18 09:29:16 +02:00
|
|
|
#define MUTANT_QUERY_STATE 0x0001
|
|
|
|
#define MUTANT_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED|SYNCHRONIZE|MUTANT_QUERY_STATE)
|
1998-02-15 20:40:49 +01:00
|
|
|
|
2008-09-04 22:51:02 +02:00
|
|
|
#define JOB_OBJECT_ASSIGN_PROCESS 0x0001
|
|
|
|
#define JOB_OBJECT_SET_ATTRIBUTES 0x0002
|
|
|
|
#define JOB_OBJECT_QUERY 0x0004
|
|
|
|
#define JOB_OBJECT_TERMINATE 0x0008
|
|
|
|
#define JOB_OBJECT_SET_SECURITY_ATTRIBUTES 0x0010
|
|
|
|
#define JOB_OBJECT_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED|SYNCHRONIZE|0x1f)
|
|
|
|
|
2000-08-22 22:08:37 +02:00
|
|
|
#define TIMER_QUERY_STATE 0x0001
|
|
|
|
#define TIMER_MODIFY_STATE 0x0002
|
|
|
|
#define TIMER_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED|SYNCHRONIZE|0x3)
|
|
|
|
|
2014-05-07 10:42:15 +02:00
|
|
|
#define PROCESS_TERMINATE 0x0001
|
|
|
|
#define PROCESS_CREATE_THREAD 0x0002
|
|
|
|
#define PROCESS_VM_OPERATION 0x0008
|
|
|
|
#define PROCESS_VM_READ 0x0010
|
|
|
|
#define PROCESS_VM_WRITE 0x0020
|
|
|
|
#define PROCESS_DUP_HANDLE 0x0040
|
|
|
|
#define PROCESS_CREATE_PROCESS 0x0080
|
|
|
|
#define PROCESS_SET_QUOTA 0x0100
|
|
|
|
#define PROCESS_SET_INFORMATION 0x0200
|
|
|
|
#define PROCESS_QUERY_INFORMATION 0x0400
|
|
|
|
#define PROCESS_SUSPEND_RESUME 0x0800
|
2008-09-02 07:52:33 +02:00
|
|
|
#define PROCESS_QUERY_LIMITED_INFORMATION 0x1000
|
2014-05-07 10:42:15 +02:00
|
|
|
#define PROCESS_SET_LIMITED_INFORMATION 0x2000
|
2014-02-06 12:48:13 +01:00
|
|
|
#define PROCESS_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED|SYNCHRONIZE|0xffff)
|
1998-02-15 20:40:49 +01:00
|
|
|
|
2014-05-07 10:42:15 +02:00
|
|
|
#define THREAD_TERMINATE 0x0001
|
|
|
|
#define THREAD_SUSPEND_RESUME 0x0002
|
|
|
|
#define THREAD_GET_CONTEXT 0x0008
|
|
|
|
#define THREAD_SET_CONTEXT 0x0010
|
|
|
|
#define THREAD_SET_INFORMATION 0x0020
|
|
|
|
#define THREAD_QUERY_INFORMATION 0x0040
|
|
|
|
#define THREAD_SET_THREAD_TOKEN 0x0080
|
|
|
|
#define THREAD_IMPERSONATE 0x0100
|
|
|
|
#define THREAD_DIRECT_IMPERSONATION 0x0200
|
|
|
|
#define THREAD_SET_LIMITED_INFORMATION 0x0400
|
|
|
|
#define THREAD_QUERY_LIMITED_INFORMATION 0x0800
|
|
|
|
#define THREAD_RESUME 0x1000
|
2014-02-06 12:48:49 +01:00
|
|
|
#define THREAD_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED|SYNCHRONIZE|0xffff)
|
1998-02-15 20:40:49 +01:00
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
#define THREAD_BASE_PRIORITY_LOWRT 15
|
|
|
|
#define THREAD_BASE_PRIORITY_MAX 2
|
1999-03-10 19:03:53 +01:00
|
|
|
#define THREAD_BASE_PRIORITY_MIN -2
|
|
|
|
#define THREAD_BASE_PRIORITY_IDLE -15
|
|
|
|
|
2006-07-14 20:52:16 +02:00
|
|
|
typedef struct _QUOTA_LIMITS {
|
|
|
|
SIZE_T PagedPoolLimit;
|
|
|
|
SIZE_T NonPagedPoolLimit;
|
|
|
|
SIZE_T MinimumWorkingSetSize;
|
|
|
|
SIZE_T MaximumWorkingSetSize;
|
|
|
|
SIZE_T PagefileLimit;
|
|
|
|
LARGE_INTEGER TimeLimit;
|
|
|
|
} QUOTA_LIMITS, *PQUOTA_LIMITS;
|
|
|
|
|
|
|
|
#define QUOTA_LIMITS_HARDWS_MIN_ENABLE 0x00000001
|
|
|
|
#define QUOTA_LIMITS_HARDWS_MIN_DISABLE 0x00000002
|
|
|
|
#define QUOTA_LIMITS_HARDWS_MAX_ENABLE 0x00000004
|
|
|
|
#define QUOTA_LIMITS_HARDWS_MAX_DISABLE 0x00000008
|
|
|
|
|
|
|
|
typedef struct _QUOTA_LIMITS_EX {
|
|
|
|
SIZE_T PagedPoolLimit;
|
|
|
|
SIZE_T NonPagedPoolLimit;
|
|
|
|
SIZE_T MinimumWorkingSetSize;
|
|
|
|
SIZE_T MaximumWorkingSetSize;
|
|
|
|
SIZE_T PagefileLimit;
|
|
|
|
LARGE_INTEGER TimeLimit;
|
|
|
|
SIZE_T Reserved1;
|
|
|
|
SIZE_T Reserved2;
|
|
|
|
SIZE_T Reserved3;
|
|
|
|
SIZE_T Reserved4;
|
|
|
|
DWORD Flags;
|
|
|
|
DWORD Reserved5;
|
|
|
|
} QUOTA_LIMITS_EX, *PQUOTA_LIMITS_EX;
|
|
|
|
|
2002-09-17 20:54:42 +02:00
|
|
|
#define SECTION_QUERY 0x0001
|
|
|
|
#define SECTION_MAP_WRITE 0x0002
|
|
|
|
#define SECTION_MAP_READ 0x0004
|
|
|
|
#define SECTION_MAP_EXECUTE 0x0008
|
|
|
|
#define SECTION_EXTEND_SIZE 0x0010
|
2005-02-22 20:32:22 +01:00
|
|
|
#define SECTION_MAP_EXECUTE_EXPLICIT 0x0020
|
2002-09-17 20:54:42 +02:00
|
|
|
#define SECTION_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED|0x01f)
|
|
|
|
|
1998-02-15 20:40:49 +01:00
|
|
|
#define FILE_READ_DATA 0x0001 /* file & pipe */
|
|
|
|
#define FILE_LIST_DIRECTORY 0x0001 /* directory */
|
|
|
|
#define FILE_WRITE_DATA 0x0002 /* file & pipe */
|
|
|
|
#define FILE_ADD_FILE 0x0002 /* directory */
|
|
|
|
#define FILE_APPEND_DATA 0x0004 /* file */
|
|
|
|
#define FILE_ADD_SUBDIRECTORY 0x0004 /* directory */
|
|
|
|
#define FILE_CREATE_PIPE_INSTANCE 0x0004 /* named pipe */
|
|
|
|
#define FILE_READ_EA 0x0008 /* file & directory */
|
|
|
|
#define FILE_READ_PROPERTIES FILE_READ_EA
|
|
|
|
#define FILE_WRITE_EA 0x0010 /* file & directory */
|
|
|
|
#define FILE_WRITE_PROPERTIES FILE_WRITE_EA
|
|
|
|
#define FILE_EXECUTE 0x0020 /* file */
|
|
|
|
#define FILE_TRAVERSE 0x0020 /* directory */
|
|
|
|
#define FILE_DELETE_CHILD 0x0040 /* directory */
|
|
|
|
#define FILE_READ_ATTRIBUTES 0x0080 /* all */
|
|
|
|
#define FILE_WRITE_ATTRIBUTES 0x0100 /* all */
|
|
|
|
#define FILE_ALL_ACCESS (STANDARD_RIGHTS_REQUIRED|SYNCHRONIZE|0x1ff)
|
|
|
|
|
|
|
|
#define FILE_GENERIC_READ (STANDARD_RIGHTS_READ | FILE_READ_DATA | \
|
|
|
|
FILE_READ_ATTRIBUTES | FILE_READ_EA | \
|
|
|
|
SYNCHRONIZE)
|
|
|
|
#define FILE_GENERIC_WRITE (STANDARD_RIGHTS_WRITE | FILE_WRITE_DATA | \
|
|
|
|
FILE_WRITE_ATTRIBUTES | FILE_WRITE_EA | \
|
|
|
|
FILE_APPEND_DATA | SYNCHRONIZE)
|
|
|
|
#define FILE_GENERIC_EXECUTE (STANDARD_RIGHTS_EXECUTE | FILE_EXECUTE | \
|
|
|
|
FILE_READ_ATTRIBUTES | SYNCHRONIZE)
|
|
|
|
|
2005-06-27 11:44:08 +02:00
|
|
|
#define DUPLICATE_CLOSE_SOURCE 0x00000001
|
|
|
|
#define DUPLICATE_SAME_ACCESS 0x00000002
|
Release 980601
Sun May 31 13:40:13 1998 Alexandre Julliard <julliard@lrc.epfl.ch>
* [if1632/signal.c]
Added display of exception name.
* [loader/task.c]
Yet another attempt at fixing SwitchStackTo/SwitchStackBack.
* [memory/selector.c] [relay32/builtin32.c] [tools/build.c]
[win32/kernel32.c]
Generate an assembly stub for Win32 register functions to make
their names available at link time.
* [programs/*/Makefile.in]
Added hacks to support old resource compiler.
Fri May 29 16:27:14 1998 Marcus Meissner <marcus@jet.franken.de>
* [tools/testrun]
Merge of my testscripts at home into one single perl program
(tested with perl5). Works only on Linux due to 'ps' and 'ipcs'
magic.
* [controls/menu.c]
Added some DefaultMenuItem stubs.
* [debugger/stabs.c]
Fixed stabs loading, now supports (int,int) typeinfo format used
by gcc-2.8 and egcs-1. If it still crashes, please mail me.
* [if1632/][relay32/]
Added msvideo.dll (stubs only)
Replaced some ptr by str for stringcases
Added some new stubs (VxDCall, FindCloseNotif....)
* [misc/network.c]
Some argument fixes.
* [misc/registry.c][misc/cpu.c]
Registry initialization partially rewritten and enhanced.
* [scheduler/*.c]
Some additions so we don't do kill(0,SIGUSR1) (kill processgroup
instead of targeted thread)
Added SetThreadContext.
Thu May 28 23:59:59 1998 Bertho Stultiens <bertho@akhphd.au.dk>
* [tools/wrc/*]
New resource compiler version 1.0.0 (28-May-1998)
* [Make.rules.in] [Makefile.in]
Changed and added rc rules to point to tools/wrc/wrc.
* [configure.in] [include/config.h.in]
Added check for function 'stricmp'.
* [include/resource.h]
Commented out the old resource structure to catch references.
It also includes wrc_rsc.h.
* [include/wrc_rsc.h]
New file. Definitions for the resources generated with wrc.
* [include/windows.h]
Added #ifdef RC_INVOKED to exclude stdarg.h.
Added SS_NOTIFY flag.
* [include/winnls.h]
Added SUBLANG_* definitions and corrected some defaults.
* [loader/libres.c]
Changed the sysres load functions to support wrc generated
resources.
* [resource/sysres_*.rc]
Added #include <windows.h>
* [resource/sysres.c]
Changed declarations to match wrc's output
* [resource/Makefile.in]
Changed rules to work with wrc.
* [tools/makedep.c]
Changed generation of .rc file dependencies to .s target.
Thu May 28 22:28:39 1998 Eric Kohl <ekohl@abo.rhein-zeitung.de>
* [files/file.c][include/windows.c][relay32/kernel32.spec]
Implemented GetFileAttributesEx32A/W.
* [misc/imagelist.h][include/commctrl.h][relay32/comctl32.spec]
Added ImageList_Read and ImageList_Write stubs.
Added ImageList_AddIcon function.
Added ImageList_LoadImage. It is the same as ImageList_LoadImage32A.
* [controls/header.c]
Fixed bitmap drawing bug.
Added full bitmap support.
* [include/commctrl.h]
Added missing header macros.
* [controls/toolbar.c][include/toolbar.h][include/commctrl.h]
[controls/commctrl.c] [relay32/comctl32.spec]
First implementation of toolbar control.
Implemented CreateToolbar, CreateToolbarEx and CreateMappedBitmap.
* [controls/progress.c][controls/status.c]
Some code cleanup.
* [controls/commctrl.c][include/commctrl.h][relay32/comctl32.spec]
Removed CreateStatusWindow16 and DrawStatusText16.
CreateStatusWindow is the same as CreateStatusWindow32A.
DrawStatusText is the same as DrawStatusText32A.
Thu May 28 16:01:28 1998 Matthew J. Francis <asbel@dial.pipex.com>
* [objects/bitmap.c] [objects/bitmap.h] [objects/oembitmap.c]
[objects/dc.c] [graphics/x11drv/bitblt.c]
Added partial implementation of CreateDIBSection, with great thanks
to Ulrich Weigand <weigand@informatik.uni-erlangen.de> for
contributing the bulk of the patch.
Wed May 27 19:04:31 1998 Ulrich Weigand <weigand@informatik.uni-erlangen.de>
* [win32/kernel32.c] [if1632/thunk.c] [include/flatthunk.h]
ThunkConnect16 and related functions moved to emulator.
* [loader/ne/segment.c]
Call DllEntryPoint with correct arguments.
* [relay32/builtin32.c]
Bugfix: Relay debugging did not work for multiple processes.
* [controls/menu.c]
Bugfix: dwItemData was not set for MF_OWNERDRAW menus.
* [if1632/relay.c] [relay32/relay386.c]
Relay messages converted to use DPRINTF.
* [controls/desktop.c] [relay32/user32.spec]
Implemented PaintDesktop.
* [files/profile.c] [if1632/kernel.spec] [misc/network.c]
[misc/printdrv.c] [relay32/winspool.spec]
[win32/ordinals.c] [relay32/kernel32.spec]
Some stubs added.
* [relay32/mpr.spec]
All ordinals were off by one.
Tue May 26 13:32:57 1998 Bill Hawes <whawes@star.net>
* [misc/lstr.c] [include/casemap.h] [tools/unimap.pl]
Added Unicode case conversion routines towupper/towlower,
with mapping tables casemap.h created by tools/unimap.pl.
* [misc/ntdll.c] [include/winnls.h] [relay32/ntdll.spec]
[relay32/advapi.spec]
Minimal implementation of IsTextUnicode, just enough to get
NT4 notepad to open ascii/unicode files.
* [Make.rules.in] [resources/sysres_En.rc]
Added include file dlgs.h for building resource files, so that
resources can refer to defined values (e.g. pshHelp).
* [misc/crtdll.c] [relay32/crtdll.spec]
Use towupper/towlower for 32W case conversions.
* [memory/string.c]
Use towupper for 32W case conversions.
* [ole/ole2nls.c]
Use towupper for 32W case conversions; fix mem leak; minor cleanup
* [controls/edit.c]
Added soft break flag to edit state. Print unknown action values
for WM_VSCROLL (action 190 occurs when running NT4 notepad.)
Mon May 25 22:42:40 1998 Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
* [files/file.c]
Care for a pathological case in SetFilePointer.
* [graphics/x11drv/xfont.c]
Handle longer Font names in LFD_ComposeLFD and try to catch errors.
* [loader/pe_image.c]
Unload Dummymodule when PE_LoadLibraryEx32A fails with
PE_LoadImage (makes Encarta 98 installer proceed).
* [misc/registry.c]
Move a check for a special case in RegCreateKeyEx32W after the
check for existence.
Tue May 25 20:18:26 1998 Matthew Becker <mbecker@glasscity.net>
* [misc/ntdll.c]
Added some stubs, just guessing at the size of their param lists.
* [misc/registry.c]
Added stubs for RegUnLoadKey, RegSetKeySecurity, RegSaveKey,
RegRestoreKey, and RegReplaceKey
* [programs/regtest/regtest.c]
Updated registry testing program.
Sun May 24 18:11:40 1998 Alex Priem <alexp@sci.kun.nl>
* [file/profile.c]
Added flag 'return_values' to PROFILE_GetSection.
Sun May 24 13:41:10 1998 James Juran <jrj120@psu.edu>
* [misc/shell.c] [files/directory.c]
Documentation/debugging info additions.
* [*/*.c] [include/*.h]
Moved many extern function definitions to appropriate header files.
Cleaned up a few compile warnings.
If #include "debug.h" is present, removed #include <stdio.h>.
debug.h includes stdio.h, so it is not necessary to include both.
* [graphics/*.c] [if1632/signal.c] [ipc/*.c] [scheduler/*.c]
[win32/*.c] [windows/*.c]
Final patch to convert fprintf statements to new debugging interface.
Some fprintfs are still left, especially in the debugger/ directory.
However, IMHO, it's not worth the effort to change the rest.
Fri May 22 21:58:35 1998 Morten Welinder <terra@diku.dk>
* [windows/keyboard.c]
Correct handling of keys "`-=[]\;',./".
Fri May 22 12:06:00 1998 Per Lindstrm <pelinstr@algonet.se>
* [include/windows.h] [relay32/kernel32.spec] [win32/console.c]
Added stub for ReadConsoleOutputCharacter32A.
Thu May 21 16:45:48 1998 Pascal Cuoq <pcuoq@ens-lyon.fr>
* [ole/ole2nls.c]
Began better implementation of LCMapString32A.
Not very well tested yet, and still need improvements.
* [controls/scroll.c]
Documented functions.
Wed May 20 21:37:56 1998 Peter Hunnisett <hunnise@nortel.ca>
* [include/windows.h][misc/main.c]
Change SystemParameterInfo to support SPI_GETHIGHCONTRAST. Also
include some missing SPI_ definitions.
* [include/dsound.h][multimedia/dsound.c][relay32/dplayx.spec]
Added stubs for DirectPlayLobbyCreate[AW]. Not sure if these
should go into a new files dplayx.c? Anyone care?
* [include/winnls.h]
Added two missing flags for the CompareString32 functions.
1998-06-01 12:44:35 +02:00
|
|
|
|
2000-05-24 23:03:48 +02:00
|
|
|
/* File attribute flags */
|
2011-10-26 23:43:22 +02:00
|
|
|
#define FILE_SHARE_READ 0x00000001
|
|
|
|
#define FILE_SHARE_WRITE 0x00000002
|
|
|
|
#define FILE_SHARE_DELETE 0x00000004
|
2004-04-20 01:11:31 +02:00
|
|
|
|
|
|
|
#define FILE_ATTRIBUTE_READONLY 0x00000001
|
|
|
|
#define FILE_ATTRIBUTE_HIDDEN 0x00000002
|
|
|
|
#define FILE_ATTRIBUTE_SYSTEM 0x00000004
|
|
|
|
#define FILE_ATTRIBUTE_DIRECTORY 0x00000010
|
|
|
|
#define FILE_ATTRIBUTE_ARCHIVE 0x00000020
|
2008-08-25 16:48:31 +02:00
|
|
|
#define FILE_ATTRIBUTE_DEVICE 0x00000040
|
2004-04-20 01:11:31 +02:00
|
|
|
#define FILE_ATTRIBUTE_NORMAL 0x00000080
|
|
|
|
#define FILE_ATTRIBUTE_TEMPORARY 0x00000100
|
|
|
|
#define FILE_ATTRIBUTE_SPARSE_FILE 0x00000200
|
|
|
|
#define FILE_ATTRIBUTE_REPARSE_POINT 0x00000400
|
|
|
|
#define FILE_ATTRIBUTE_COMPRESSED 0x00000800
|
|
|
|
#define FILE_ATTRIBUTE_OFFLINE 0x00001000
|
|
|
|
#define FILE_ATTRIBUTE_NOT_CONTENT_INDEXED 0x00002000
|
|
|
|
#define FILE_ATTRIBUTE_ENCRYPTED 0x00004000
|
2016-06-03 00:42:29 +02:00
|
|
|
#define FILE_ATTRIBUTE_INTEGRITY_STREAM 0x00008000
|
|
|
|
#define FILE_ATTRIBUTE_VIRTUAL 0x00010000
|
|
|
|
#define FILE_ATTRIBUTE_NO_SCRUB_DATA 0x00020000
|
|
|
|
#define FILE_ATTRIBUTE_EA 0x00040000
|
1999-02-09 16:46:25 +01:00
|
|
|
|
2000-05-24 23:03:48 +02:00
|
|
|
/* File notification flags */
|
|
|
|
#define FILE_NOTIFY_CHANGE_FILE_NAME 0x00000001
|
|
|
|
#define FILE_NOTIFY_CHANGE_DIR_NAME 0x00000002
|
2016-06-07 00:26:54 +02:00
|
|
|
#define FILE_NOTIFY_CHANGE_NAME 0x00000003
|
2000-05-24 23:03:48 +02:00
|
|
|
#define FILE_NOTIFY_CHANGE_ATTRIBUTES 0x00000004
|
|
|
|
#define FILE_NOTIFY_CHANGE_SIZE 0x00000008
|
|
|
|
#define FILE_NOTIFY_CHANGE_LAST_WRITE 0x00000010
|
|
|
|
#define FILE_NOTIFY_CHANGE_LAST_ACCESS 0x00000020
|
|
|
|
#define FILE_NOTIFY_CHANGE_CREATION 0x00000040
|
2006-02-03 18:45:51 +01:00
|
|
|
#define FILE_NOTIFY_CHANGE_EA 0x00000080
|
2000-05-24 23:03:48 +02:00
|
|
|
#define FILE_NOTIFY_CHANGE_SECURITY 0x00000100
|
2006-02-03 18:45:51 +01:00
|
|
|
#define FILE_NOTIFY_CHANGE_STREAM_NAME 0x00000200
|
|
|
|
#define FILE_NOTIFY_CHANGE_STREAM_SIZE 0x00000400
|
|
|
|
#define FILE_NOTIFY_CHANGE_STREAM_WRITE 0x00000800
|
2000-05-24 23:03:48 +02:00
|
|
|
|
|
|
|
#define FILE_ACTION_ADDED 0x00000001
|
|
|
|
#define FILE_ACTION_REMOVED 0x00000002
|
|
|
|
#define FILE_ACTION_MODIFIED 0x00000003
|
|
|
|
#define FILE_ACTION_RENAMED_OLD_NAME 0x00000004
|
|
|
|
#define FILE_ACTION_RENAMED_NEW_NAME 0x00000005
|
2006-02-03 18:45:51 +01:00
|
|
|
#define FILE_ACTION_ADDED_STREAM 0x00000006
|
|
|
|
#define FILE_ACTION_REMOVED_STREAM 0x00000007
|
|
|
|
#define FILE_ACTION_MODIFIED_STREAM 0x00000008
|
2016-06-07 00:26:54 +02:00
|
|
|
#define FILE_ACTION_REMOVED_BY_DELETE 0x00000009
|
|
|
|
#define FILE_ACTION_ID_NOT_TUNNELLED 0x0000000a
|
|
|
|
#define FILE_ACTION_TUNNELLED_ID_COLLISION 0x0000000b
|
2000-05-24 23:03:48 +02:00
|
|
|
|
|
|
|
#define FILE_CASE_SENSITIVE_SEARCH 0x00000001
|
|
|
|
#define FILE_CASE_PRESERVED_NAMES 0x00000002
|
|
|
|
#define FILE_UNICODE_ON_DISK 0x00000004
|
|
|
|
#define FILE_PERSISTENT_ACLS 0x00000008
|
|
|
|
#define FILE_FILE_COMPRESSION 0x00000010
|
2011-08-28 13:05:01 +02:00
|
|
|
#define FILE_VOLUME_QUOTAS 0x00000020
|
|
|
|
#define FILE_SUPPORTS_SPARSE_FILES 0x00000040
|
|
|
|
#define FILE_SUPPORTS_REPARSE_POINTS 0x00000080
|
2016-06-07 00:26:54 +02:00
|
|
|
#define FILE_SUPPORTS_REMOTE_STORAGE 0x00000100
|
2000-05-24 23:03:48 +02:00
|
|
|
#define FILE_VOLUME_IS_COMPRESSED 0x00008000
|
2004-03-09 02:03:03 +01:00
|
|
|
#define FILE_SUPPORTS_OBJECT_IDS 0x00010000
|
|
|
|
#define FILE_SUPPORTS_ENCRYPTION 0x00020000
|
|
|
|
#define FILE_NAMED_STREAMS 0x00040000
|
|
|
|
#define FILE_READ_ONLY_VOLUME 0x00080000
|
2016-06-07 00:26:54 +02:00
|
|
|
#define FILE_SEQUENTIAL_WRITE_ONCE 0x00100000
|
|
|
|
#define FILE_SUPPORTS_TRANSACTIONS 0x00200000
|
|
|
|
#define FILE_SUPPORTS_HARD_LINKS 0x00400000
|
|
|
|
#define FILE_SUPPORTS_EXTENDED_ATTRIBUTES 0x00800000
|
|
|
|
#define FILE_SUPPORTS_OPEN_BY_FILE_ID 0x01000000
|
|
|
|
#define FILE_SUPPORTS_USN_JOURNAL 0x02000000
|
|
|
|
#define FILE_SUPPORTS_INTEGRITY_STREAMS 0x04000000
|
|
|
|
#define FILE_SUPPORTS_BLOCK_REFCOUNTING 0x08000000
|
|
|
|
#define FILE_SUPPORTS_SPARSE_VDL 0x10000000
|
2000-05-24 23:03:48 +02:00
|
|
|
|
1999-02-09 16:46:25 +01:00
|
|
|
/* File alignments (NT) */
|
|
|
|
#define FILE_BYTE_ALIGNMENT 0x00000000
|
|
|
|
#define FILE_WORD_ALIGNMENT 0x00000001
|
|
|
|
#define FILE_LONG_ALIGNMENT 0x00000003
|
|
|
|
#define FILE_QUAD_ALIGNMENT 0x00000007
|
|
|
|
#define FILE_OCTA_ALIGNMENT 0x0000000f
|
|
|
|
#define FILE_32_BYTE_ALIGNMENT 0x0000001f
|
|
|
|
#define FILE_64_BYTE_ALIGNMENT 0x0000003f
|
|
|
|
#define FILE_128_BYTE_ALIGNMENT 0x0000007f
|
|
|
|
#define FILE_256_BYTE_ALIGNMENT 0x000000ff
|
|
|
|
#define FILE_512_BYTE_ALIGNMENT 0x000001ff
|
|
|
|
|
2015-07-09 03:04:57 +02:00
|
|
|
#define COMPRESSION_FORMAT_NONE 0
|
|
|
|
#define COMPRESSION_FORMAT_DEFAULT 1
|
|
|
|
#define COMPRESSION_FORMAT_LZNT1 2
|
|
|
|
#define COMPRESSION_ENGINE_STANDARD 0
|
|
|
|
#define COMPRESSION_ENGINE_MAXIMUM 256
|
|
|
|
|
2003-09-16 22:26:28 +02:00
|
|
|
#define MAILSLOT_NO_MESSAGE ((DWORD)-1)
|
|
|
|
#define MAILSLOT_WAIT_FOREVER ((DWORD)-1)
|
|
|
|
|
2000-03-26 16:41:10 +02:00
|
|
|
#define REG_NONE 0 /* no type */
|
|
|
|
#define REG_SZ 1 /* string type (ASCII) */
|
|
|
|
#define REG_EXPAND_SZ 2 /* string, includes %ENVVAR% (expanded by caller) (ASCII) */
|
|
|
|
#define REG_BINARY 3 /* binary format, callerspecific */
|
|
|
|
/* YES, REG_DWORD == REG_DWORD_LITTLE_ENDIAN */
|
|
|
|
#define REG_DWORD 4 /* DWORD in little endian format */
|
|
|
|
#define REG_DWORD_LITTLE_ENDIAN 4 /* DWORD in little endian format */
|
|
|
|
#define REG_DWORD_BIG_ENDIAN 5 /* DWORD in big endian format */
|
|
|
|
#define REG_LINK 6 /* symbolic link (UNICODE) */
|
|
|
|
#define REG_MULTI_SZ 7 /* multiple strings, delimited by \0, terminated by \0\0 (ASCII) */
|
|
|
|
#define REG_RESOURCE_LIST 8 /* resource list? huh? */
|
|
|
|
#define REG_FULL_RESOURCE_DESCRIPTOR 9 /* full resource descriptor? huh? */
|
|
|
|
#define REG_RESOURCE_REQUIREMENTS_LIST 10
|
2002-12-10 20:59:33 +01:00
|
|
|
#define REG_QWORD 11 /* QWORD in little endian format */
|
|
|
|
#define REG_QWORD_LITTLE_ENDIAN 11 /* QWORD in little endian format */
|
2000-03-26 16:41:10 +02:00
|
|
|
|
2003-08-12 20:56:54 +02:00
|
|
|
/* ----------------------------- begin power management --------------------- */
|
|
|
|
|
|
|
|
typedef enum _LATENCY_TIME {
|
|
|
|
LT_DONT_CARE,
|
|
|
|
LT_LOWEST_LATENCY
|
|
|
|
} LATENCY_TIME, *PLATENCY_TIME;
|
|
|
|
|
2005-04-11 20:49:10 +02:00
|
|
|
#define DISCHARGE_POLICY_CRITICAL 0
|
|
|
|
#define DISCHARGE_POLICY_LOW 1
|
|
|
|
#define NUM_DISCHARGE_POLICIES 4
|
|
|
|
|
|
|
|
#define PO_THROTTLE_NONE 0
|
|
|
|
#define PO_THROTTLE_CONSTANT 1
|
|
|
|
#define PO_THROTTLE_DEGRADE 2
|
|
|
|
#define PO_THROTTLE_ADAPTIVE 3
|
|
|
|
|
|
|
|
typedef enum _POWER_ACTION {
|
|
|
|
PowerActionNone = 0,
|
|
|
|
PowerActionReserved,
|
|
|
|
PowerActionSleep,
|
|
|
|
PowerActionHibernate,
|
|
|
|
PowerActionShutdown,
|
|
|
|
PowerActionShutdownReset,
|
|
|
|
PowerActionShutdownOff,
|
|
|
|
PowerActionWarmEject
|
|
|
|
} POWER_ACTION,
|
|
|
|
*PPOWER_ACTION;
|
|
|
|
|
2016-08-07 19:29:22 +02:00
|
|
|
typedef enum _POWER_PLATFORM_ROLE {
|
|
|
|
PlatformRoleUnspecified,
|
|
|
|
PlatformRoleDesktop,
|
|
|
|
PlatformRoleMobile,
|
|
|
|
PlatformRoleWorkstation,
|
|
|
|
PlatformRoleEnterpriseServer,
|
|
|
|
PlatformRoleSOHOServer,
|
|
|
|
PlatformRoleAppliancePC,
|
|
|
|
PlatformRolePerformanceServer,
|
|
|
|
PlatformRoleSlate,
|
|
|
|
PlatformRoleMaximum
|
|
|
|
} POWER_PLATFORM_ROLE, *PPOWER_PLATFORM_ROLE;
|
|
|
|
|
2005-04-11 20:49:10 +02:00
|
|
|
typedef enum _SYSTEM_POWER_STATE {
|
|
|
|
PowerSystemUnspecified = 0,
|
|
|
|
PowerSystemWorking = 1,
|
|
|
|
PowerSystemSleeping1 = 2,
|
|
|
|
PowerSystemSleeping2 = 3,
|
|
|
|
PowerSystemSleeping3 = 4,
|
|
|
|
PowerSystemHibernate = 5,
|
|
|
|
PowerSystemShutdown = 6,
|
|
|
|
PowerSystemMaximum = 7
|
|
|
|
} SYSTEM_POWER_STATE,
|
|
|
|
*PSYSTEM_POWER_STATE;
|
|
|
|
|
2005-04-12 13:58:43 +02:00
|
|
|
typedef enum _DEVICE_POWER_STATE {
|
|
|
|
PowerDeviceUnspecified,
|
|
|
|
PowerDeviceD0,
|
|
|
|
PowerDeviceD1,
|
|
|
|
PowerDeviceD2,
|
|
|
|
PowerDeviceD3,
|
|
|
|
PowerDeviceMaximum
|
|
|
|
} DEVICE_POWER_STATE, *PDEVICE_POWER_STATE;
|
|
|
|
|
2005-04-11 20:49:10 +02:00
|
|
|
typedef enum _POWER_INFORMATION_LEVEL {
|
|
|
|
SystemPowerPolicyAc,
|
|
|
|
SystemPowerPolicyDc,
|
|
|
|
VerifySystemPolicyAc,
|
|
|
|
VerifySystemPolicyDc,
|
|
|
|
SystemPowerCapabilities,
|
|
|
|
SystemBatteryState,
|
|
|
|
SystemPowerStateHandler,
|
|
|
|
ProcessorStateHandler,
|
|
|
|
SystemPowerPolicyCurrent,
|
|
|
|
AdministratorPowerPolicy,
|
|
|
|
SystemReserveHiberFile,
|
|
|
|
ProcessorInformation,
|
|
|
|
SystemPowerInformation,
|
|
|
|
ProcessorStateHandler2,
|
|
|
|
LastWakeTime,
|
|
|
|
LastSleepTime,
|
|
|
|
SystemExecutionState,
|
|
|
|
SystemPowerStateNotifyHandler,
|
|
|
|
ProcessorPowerPolicyAc,
|
|
|
|
ProcessorPowerPolicyDc,
|
|
|
|
VerifyProcessorPowerPolicyAc,
|
|
|
|
VerifyProcessorPowerPolicyDc,
|
|
|
|
ProcessorPowerPolicyCurrent
|
|
|
|
} POWER_INFORMATION_LEVEL;
|
|
|
|
|
|
|
|
typedef struct _ADMINISTRATOR_POWER_POLICY {
|
|
|
|
SYSTEM_POWER_STATE MinSleep;
|
|
|
|
SYSTEM_POWER_STATE MaxSleep;
|
|
|
|
ULONG MinVideoTimeout;
|
|
|
|
ULONG MaxVideoTimeout;
|
|
|
|
ULONG MinSpindownTimeout;
|
|
|
|
ULONG MaxSpindownTimeout;
|
|
|
|
} ADMINISTRATOR_POWER_POLICY, *PADMINISTRATOR_POWER_POLICY;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
ULONG Granularity;
|
|
|
|
ULONG Capacity;
|
|
|
|
} BATTERY_REPORTING_SCALE,
|
|
|
|
*PBATTERY_REPORTING_SCALE;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
POWER_ACTION Action;
|
|
|
|
ULONG Flags;
|
|
|
|
ULONG EventCode;
|
|
|
|
} POWER_ACTION_POLICY,
|
|
|
|
*PPOWER_ACTION_POLICY;
|
|
|
|
|
|
|
|
typedef struct _PROCESSOR_POWER_INFORMATION {
|
|
|
|
ULONG Number;
|
|
|
|
ULONG MaxMhz;
|
|
|
|
ULONG CurrentMhz;
|
|
|
|
ULONG MhzLimit;
|
|
|
|
ULONG MaxIdleState;
|
|
|
|
ULONG CurrentIdleState;
|
|
|
|
} PROCESSOR_POWER_INFORMATION,
|
|
|
|
*PPROCESSOR_POWER_INFORMATION;
|
|
|
|
|
|
|
|
typedef struct _PROCESSOR_POWER_POLICY_INFO {
|
|
|
|
ULONG TimeCheck;
|
|
|
|
ULONG DemoteLimit;
|
|
|
|
ULONG PromoteLimit;
|
|
|
|
UCHAR DemotePercent;
|
|
|
|
UCHAR PromotePercent;
|
|
|
|
UCHAR Spare[2];
|
|
|
|
ULONG AllowDemotion:1;
|
|
|
|
ULONG AllowPromotion:1;
|
|
|
|
ULONG Reserved:30;
|
|
|
|
} PROCESSOR_POWER_POLICY_INFO,
|
|
|
|
*PPROCESSOR_POWER_POLICY_INFO;
|
|
|
|
|
|
|
|
typedef struct _PROCESSOR_POWER_POLICY {
|
|
|
|
DWORD Revision;
|
|
|
|
BYTE DynamicThrottle;
|
|
|
|
BYTE Spare[3];
|
|
|
|
DWORD DisableCStates:1;
|
|
|
|
DWORD Reserved:31;
|
|
|
|
DWORD PolicyCount;
|
|
|
|
PROCESSOR_POWER_POLICY_INFO Policy[3];
|
|
|
|
} PROCESSOR_POWER_POLICY,
|
|
|
|
*PPROCESSOR_POWER_POLICY;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
BOOLEAN AcOnLine;
|
|
|
|
BOOLEAN BatteryPresent;
|
|
|
|
BOOLEAN Charging;
|
|
|
|
BOOLEAN Discharging;
|
|
|
|
BOOLEAN Spare1[4];
|
|
|
|
ULONG MaxCapacity;
|
|
|
|
ULONG RemainingCapacity;
|
|
|
|
ULONG Rate;
|
|
|
|
ULONG EstimatedTime;
|
|
|
|
ULONG DefaultAlert1;
|
|
|
|
ULONG DefaultAlert2;
|
|
|
|
} SYSTEM_BATTERY_STATE,
|
|
|
|
*PSYSTEM_BATTERY_STATE;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
BOOLEAN PowerButtonPresent;
|
|
|
|
BOOLEAN SleepButtonPresent;
|
|
|
|
BOOLEAN LidPresent;
|
|
|
|
BOOLEAN SystemS1;
|
|
|
|
BOOLEAN SystemS2;
|
|
|
|
BOOLEAN SystemS3;
|
|
|
|
BOOLEAN SystemS4;
|
|
|
|
BOOLEAN SystemS5;
|
|
|
|
BOOLEAN HiberFilePresent;
|
|
|
|
BOOLEAN FullWake;
|
|
|
|
BOOLEAN VideoDimPresent;
|
|
|
|
BOOLEAN ApmPresent;
|
|
|
|
BOOLEAN UpsPresent;
|
|
|
|
BOOLEAN ThermalControl;
|
|
|
|
BOOLEAN ProcessorThrottle;
|
|
|
|
UCHAR ProcessorMinThrottle;
|
|
|
|
UCHAR ProcessorMaxThrottle;
|
|
|
|
UCHAR spare2[4];
|
|
|
|
BOOLEAN DiskSpinDown;
|
|
|
|
UCHAR spare3[8];
|
|
|
|
BOOLEAN SystemBatteriesPresent;
|
|
|
|
BOOLEAN BatteriesAreShortTerm;
|
|
|
|
BATTERY_REPORTING_SCALE BatteryScale[3];
|
|
|
|
SYSTEM_POWER_STATE AcOnLineWake;
|
|
|
|
SYSTEM_POWER_STATE SoftLidWake;
|
|
|
|
SYSTEM_POWER_STATE RtcWake;
|
|
|
|
SYSTEM_POWER_STATE MinDeviceWakeState;
|
|
|
|
SYSTEM_POWER_STATE DefaultLowLatencyWake;
|
|
|
|
} SYSTEM_POWER_CAPABILITIES,
|
|
|
|
*PSYSTEM_POWER_CAPABILITIES;
|
|
|
|
|
|
|
|
typedef struct _SYSTEM_POWER_INFORMATION {
|
|
|
|
ULONG MaxIdlenessAllowed;
|
|
|
|
ULONG Idleness;
|
|
|
|
ULONG TimeRemaining;
|
|
|
|
UCHAR CoolingMode;
|
|
|
|
} SYSTEM_POWER_INFORMATION,
|
|
|
|
*PSYSTEM_POWER_INFORMATION;
|
|
|
|
|
|
|
|
typedef struct _SYSTEM_POWER_LEVEL {
|
|
|
|
BOOLEAN Enable;
|
|
|
|
UCHAR Spare[3];
|
|
|
|
ULONG BatteryLevel;
|
|
|
|
POWER_ACTION_POLICY PowerPolicy;
|
|
|
|
SYSTEM_POWER_STATE MinSystemState;
|
|
|
|
} SYSTEM_POWER_LEVEL,
|
|
|
|
*PSYSTEM_POWER_LEVEL;
|
|
|
|
|
|
|
|
typedef struct _SYSTEM_POWER_POLICY {
|
|
|
|
ULONG Revision;
|
|
|
|
POWER_ACTION_POLICY PowerButton;
|
|
|
|
POWER_ACTION_POLICY SleepButton;
|
|
|
|
POWER_ACTION_POLICY LidClose;
|
|
|
|
SYSTEM_POWER_STATE LidOpenWake;
|
|
|
|
ULONG Reserved;
|
|
|
|
POWER_ACTION_POLICY Idle;
|
|
|
|
ULONG IdleTimeout;
|
|
|
|
UCHAR IdleSensitivity;
|
|
|
|
UCHAR DynamicThrottle;
|
|
|
|
UCHAR Spare2[2];
|
|
|
|
SYSTEM_POWER_STATE MinSleep;
|
|
|
|
SYSTEM_POWER_STATE MaxSleep;
|
|
|
|
SYSTEM_POWER_STATE ReducedLatencySleep;
|
|
|
|
ULONG WinLogonFlags;
|
|
|
|
ULONG Spare3;
|
|
|
|
ULONG DozeS4Timeout;
|
|
|
|
ULONG BroadcastCapacityResolution;
|
|
|
|
SYSTEM_POWER_LEVEL DischargePolicy[NUM_DISCHARGE_POLICIES];
|
|
|
|
ULONG VideoTimeout;
|
|
|
|
BOOLEAN VideoDimDisplay;
|
|
|
|
ULONG VideoReserved[3];
|
|
|
|
ULONG SpindownTimeout;
|
|
|
|
BOOLEAN OptimizeForPower;
|
|
|
|
UCHAR FanThrottleTolerance;
|
|
|
|
UCHAR ForcedThrottle;
|
|
|
|
UCHAR MinThrottle;
|
|
|
|
POWER_ACTION_POLICY OverThrottled;
|
|
|
|
} SYSTEM_POWER_POLICY,
|
|
|
|
*PSYSTEM_POWER_POLICY;
|
|
|
|
|
2005-07-06 12:32:46 +02:00
|
|
|
typedef union _FILE_SEGMENT_ELEMENT {
|
|
|
|
PVOID64 Buffer;
|
|
|
|
ULONGLONG Alignment;
|
|
|
|
} FILE_SEGMENT_ELEMENT, *PFILE_SEGMENT_ELEMENT;
|
|
|
|
|
2006-01-16 20:38:39 +01:00
|
|
|
typedef struct _FILE_NOTIFY_INFORMATION {
|
|
|
|
DWORD NextEntryOffset;
|
|
|
|
DWORD Action;
|
|
|
|
DWORD FileNameLength;
|
|
|
|
WCHAR FileName[1];
|
|
|
|
} FILE_NOTIFY_INFORMATION, *PFILE_NOTIFY_INFORMATION;
|
|
|
|
|
2006-01-26 13:22:24 +01:00
|
|
|
/* ----------------------------- begin tape storage --------------------- */
|
|
|
|
|
|
|
|
#define TAPE_FIXED_PARTITIONS 0
|
|
|
|
#define TAPE_SELECT_PARTITIONS 1
|
|
|
|
#define TAPE_INITIATOR_PARTITIONS 2
|
|
|
|
#define TAPE_ERASE_SHORT 0
|
|
|
|
#define TAPE_ERASE_LONG 1
|
|
|
|
#define TAPE_LOAD 0
|
|
|
|
#define TAPE_UNLOAD 1
|
|
|
|
#define TAPE_TENSION 2
|
|
|
|
#define TAPE_LOCK 3
|
|
|
|
#define TAPE_UNLOCK 4
|
|
|
|
#define TAPE_FORMAT 5
|
|
|
|
#define TAPE_SETMARKS 0
|
|
|
|
#define TAPE_FILEMARKS 1
|
|
|
|
#define TAPE_SHORT_FILEMARKS 2
|
|
|
|
#define TAPE_LONG_FILEMARKS 3
|
|
|
|
#define TAPE_REWIND 0
|
|
|
|
#define TAPE_ABSOLUTE_BLOCK 1
|
|
|
|
#define TAPE_LOGICAL_BLOCK 2
|
|
|
|
#define TAPE_PSEUDO_LOGICAL_BLOCK 3
|
|
|
|
#define TAPE_SPACE_END_OF_DATA 4
|
|
|
|
#define TAPE_SPACE_RELATIVE_BLOCKS 5
|
|
|
|
#define TAPE_SPACE_FILEMARKS 6
|
|
|
|
#define TAPE_SPACE_SEQUENTIAL_FMKS 7
|
|
|
|
#define TAPE_SPACE_SETMARKS 8
|
|
|
|
#define TAPE_SPACE_SEQUENTIAL_SMKS 9
|
|
|
|
|
|
|
|
typedef struct _TAPE_CREATE_PARTITION {
|
|
|
|
DWORD Method;
|
|
|
|
DWORD Count;
|
|
|
|
DWORD Size;
|
|
|
|
} TAPE_CREATE_PARTITION, *PTAPE_CREATE_PARTITION;
|
|
|
|
|
|
|
|
typedef struct _TAPE_ERASE {
|
|
|
|
DWORD Type;
|
|
|
|
BOOLEAN Immediate;
|
|
|
|
} TAPE_ERASE, *PTAPE_ERASE;
|
|
|
|
|
|
|
|
typedef struct _TAPE_PREPARE {
|
|
|
|
DWORD Operation;
|
|
|
|
BOOLEAN Immediate;
|
|
|
|
} TAPE_PREPARE, *PTAPE_PREPARE;
|
|
|
|
|
|
|
|
typedef struct _TAPE_SET_DRIVE_PARAMETERS {
|
|
|
|
BOOLEAN ECC;
|
|
|
|
BOOLEAN Compression;
|
|
|
|
BOOLEAN DataPadding;
|
|
|
|
BOOLEAN ReportSetmarks;
|
|
|
|
ULONG EOTWarningZoneSize;
|
|
|
|
} TAPE_SET_DRIVE_PARAMETERS, *PTAPE_SET_DRIVE_PARAMETERS;
|
|
|
|
|
|
|
|
typedef struct _TAPE_SET_MEDIA_PARAMETERS {
|
|
|
|
ULONG BlockSize;
|
|
|
|
} TAPE_SET_MEDIA_PARAMETERS, *PTAPE_SET_MEDIA_PARAMETERS;
|
|
|
|
|
|
|
|
typedef struct _TAPE_WRITE_MARKS {
|
|
|
|
DWORD Type;
|
|
|
|
DWORD Count;
|
|
|
|
BOOLEAN Immediate;
|
|
|
|
} TAPE_WRITE_MARKS, *PTAPE_WRITE_MARKS;
|
|
|
|
|
|
|
|
typedef struct _TAPE_GET_POSITION {
|
|
|
|
ULONG Type;
|
|
|
|
ULONG Partition;
|
|
|
|
ULONG OffsetLow;
|
|
|
|
ULONG OffsetHigh;
|
|
|
|
} TAPE_GET_POSITION, *PTAPE_GET_POSITION;
|
|
|
|
|
|
|
|
typedef struct _TAPE_SET_POSITION {
|
|
|
|
ULONG Method;
|
|
|
|
ULONG Partition;
|
|
|
|
LARGE_INTEGER Offset;
|
|
|
|
BOOLEAN Immediate;
|
|
|
|
} TAPE_SET_POSITION, *PTAPE_SET_POSITION;
|
|
|
|
|
|
|
|
typedef struct _TAPE_GET_DRIVE_PARAMETERS {
|
|
|
|
BOOLEAN ECC;
|
|
|
|
BOOLEAN Compression;
|
|
|
|
BOOLEAN DataPadding;
|
|
|
|
BOOLEAN ReportSetmarks;
|
|
|
|
DWORD DefaultBlockSize;
|
|
|
|
DWORD MaximumBlockSize;
|
|
|
|
DWORD MinimumBlockSize;
|
|
|
|
DWORD MaximumPartitionCount;
|
|
|
|
DWORD FeaturesLow;
|
|
|
|
DWORD FeaturesHigh;
|
|
|
|
DWORD EOTWarningZoneSize;
|
|
|
|
} TAPE_GET_DRIVE_PARAMETERS, *PTAPE_GET_DRIVE_PARAMETERS;
|
|
|
|
|
|
|
|
typedef struct _TAPE_GET_MEDIA_PARAMETERS {
|
|
|
|
LARGE_INTEGER Capacity;
|
|
|
|
LARGE_INTEGER Remaining;
|
|
|
|
DWORD BlockSize;
|
|
|
|
DWORD PartitionCount;
|
|
|
|
BOOLEAN WriteProtected;
|
|
|
|
} TAPE_GET_MEDIA_PARAMETERS, *PTAPE_GET_MEDIA_PARAMETERS;
|
|
|
|
|
2000-03-26 16:41:10 +02:00
|
|
|
/* ----------------------------- begin registry ----------------------------- */
|
|
|
|
|
Release 980601
Sun May 31 13:40:13 1998 Alexandre Julliard <julliard@lrc.epfl.ch>
* [if1632/signal.c]
Added display of exception name.
* [loader/task.c]
Yet another attempt at fixing SwitchStackTo/SwitchStackBack.
* [memory/selector.c] [relay32/builtin32.c] [tools/build.c]
[win32/kernel32.c]
Generate an assembly stub for Win32 register functions to make
their names available at link time.
* [programs/*/Makefile.in]
Added hacks to support old resource compiler.
Fri May 29 16:27:14 1998 Marcus Meissner <marcus@jet.franken.de>
* [tools/testrun]
Merge of my testscripts at home into one single perl program
(tested with perl5). Works only on Linux due to 'ps' and 'ipcs'
magic.
* [controls/menu.c]
Added some DefaultMenuItem stubs.
* [debugger/stabs.c]
Fixed stabs loading, now supports (int,int) typeinfo format used
by gcc-2.8 and egcs-1. If it still crashes, please mail me.
* [if1632/][relay32/]
Added msvideo.dll (stubs only)
Replaced some ptr by str for stringcases
Added some new stubs (VxDCall, FindCloseNotif....)
* [misc/network.c]
Some argument fixes.
* [misc/registry.c][misc/cpu.c]
Registry initialization partially rewritten and enhanced.
* [scheduler/*.c]
Some additions so we don't do kill(0,SIGUSR1) (kill processgroup
instead of targeted thread)
Added SetThreadContext.
Thu May 28 23:59:59 1998 Bertho Stultiens <bertho@akhphd.au.dk>
* [tools/wrc/*]
New resource compiler version 1.0.0 (28-May-1998)
* [Make.rules.in] [Makefile.in]
Changed and added rc rules to point to tools/wrc/wrc.
* [configure.in] [include/config.h.in]
Added check for function 'stricmp'.
* [include/resource.h]
Commented out the old resource structure to catch references.
It also includes wrc_rsc.h.
* [include/wrc_rsc.h]
New file. Definitions for the resources generated with wrc.
* [include/windows.h]
Added #ifdef RC_INVOKED to exclude stdarg.h.
Added SS_NOTIFY flag.
* [include/winnls.h]
Added SUBLANG_* definitions and corrected some defaults.
* [loader/libres.c]
Changed the sysres load functions to support wrc generated
resources.
* [resource/sysres_*.rc]
Added #include <windows.h>
* [resource/sysres.c]
Changed declarations to match wrc's output
* [resource/Makefile.in]
Changed rules to work with wrc.
* [tools/makedep.c]
Changed generation of .rc file dependencies to .s target.
Thu May 28 22:28:39 1998 Eric Kohl <ekohl@abo.rhein-zeitung.de>
* [files/file.c][include/windows.c][relay32/kernel32.spec]
Implemented GetFileAttributesEx32A/W.
* [misc/imagelist.h][include/commctrl.h][relay32/comctl32.spec]
Added ImageList_Read and ImageList_Write stubs.
Added ImageList_AddIcon function.
Added ImageList_LoadImage. It is the same as ImageList_LoadImage32A.
* [controls/header.c]
Fixed bitmap drawing bug.
Added full bitmap support.
* [include/commctrl.h]
Added missing header macros.
* [controls/toolbar.c][include/toolbar.h][include/commctrl.h]
[controls/commctrl.c] [relay32/comctl32.spec]
First implementation of toolbar control.
Implemented CreateToolbar, CreateToolbarEx and CreateMappedBitmap.
* [controls/progress.c][controls/status.c]
Some code cleanup.
* [controls/commctrl.c][include/commctrl.h][relay32/comctl32.spec]
Removed CreateStatusWindow16 and DrawStatusText16.
CreateStatusWindow is the same as CreateStatusWindow32A.
DrawStatusText is the same as DrawStatusText32A.
Thu May 28 16:01:28 1998 Matthew J. Francis <asbel@dial.pipex.com>
* [objects/bitmap.c] [objects/bitmap.h] [objects/oembitmap.c]
[objects/dc.c] [graphics/x11drv/bitblt.c]
Added partial implementation of CreateDIBSection, with great thanks
to Ulrich Weigand <weigand@informatik.uni-erlangen.de> for
contributing the bulk of the patch.
Wed May 27 19:04:31 1998 Ulrich Weigand <weigand@informatik.uni-erlangen.de>
* [win32/kernel32.c] [if1632/thunk.c] [include/flatthunk.h]
ThunkConnect16 and related functions moved to emulator.
* [loader/ne/segment.c]
Call DllEntryPoint with correct arguments.
* [relay32/builtin32.c]
Bugfix: Relay debugging did not work for multiple processes.
* [controls/menu.c]
Bugfix: dwItemData was not set for MF_OWNERDRAW menus.
* [if1632/relay.c] [relay32/relay386.c]
Relay messages converted to use DPRINTF.
* [controls/desktop.c] [relay32/user32.spec]
Implemented PaintDesktop.
* [files/profile.c] [if1632/kernel.spec] [misc/network.c]
[misc/printdrv.c] [relay32/winspool.spec]
[win32/ordinals.c] [relay32/kernel32.spec]
Some stubs added.
* [relay32/mpr.spec]
All ordinals were off by one.
Tue May 26 13:32:57 1998 Bill Hawes <whawes@star.net>
* [misc/lstr.c] [include/casemap.h] [tools/unimap.pl]
Added Unicode case conversion routines towupper/towlower,
with mapping tables casemap.h created by tools/unimap.pl.
* [misc/ntdll.c] [include/winnls.h] [relay32/ntdll.spec]
[relay32/advapi.spec]
Minimal implementation of IsTextUnicode, just enough to get
NT4 notepad to open ascii/unicode files.
* [Make.rules.in] [resources/sysres_En.rc]
Added include file dlgs.h for building resource files, so that
resources can refer to defined values (e.g. pshHelp).
* [misc/crtdll.c] [relay32/crtdll.spec]
Use towupper/towlower for 32W case conversions.
* [memory/string.c]
Use towupper for 32W case conversions.
* [ole/ole2nls.c]
Use towupper for 32W case conversions; fix mem leak; minor cleanup
* [controls/edit.c]
Added soft break flag to edit state. Print unknown action values
for WM_VSCROLL (action 190 occurs when running NT4 notepad.)
Mon May 25 22:42:40 1998 Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
* [files/file.c]
Care for a pathological case in SetFilePointer.
* [graphics/x11drv/xfont.c]
Handle longer Font names in LFD_ComposeLFD and try to catch errors.
* [loader/pe_image.c]
Unload Dummymodule when PE_LoadLibraryEx32A fails with
PE_LoadImage (makes Encarta 98 installer proceed).
* [misc/registry.c]
Move a check for a special case in RegCreateKeyEx32W after the
check for existence.
Tue May 25 20:18:26 1998 Matthew Becker <mbecker@glasscity.net>
* [misc/ntdll.c]
Added some stubs, just guessing at the size of their param lists.
* [misc/registry.c]
Added stubs for RegUnLoadKey, RegSetKeySecurity, RegSaveKey,
RegRestoreKey, and RegReplaceKey
* [programs/regtest/regtest.c]
Updated registry testing program.
Sun May 24 18:11:40 1998 Alex Priem <alexp@sci.kun.nl>
* [file/profile.c]
Added flag 'return_values' to PROFILE_GetSection.
Sun May 24 13:41:10 1998 James Juran <jrj120@psu.edu>
* [misc/shell.c] [files/directory.c]
Documentation/debugging info additions.
* [*/*.c] [include/*.h]
Moved many extern function definitions to appropriate header files.
Cleaned up a few compile warnings.
If #include "debug.h" is present, removed #include <stdio.h>.
debug.h includes stdio.h, so it is not necessary to include both.
* [graphics/*.c] [if1632/signal.c] [ipc/*.c] [scheduler/*.c]
[win32/*.c] [windows/*.c]
Final patch to convert fprintf statements to new debugging interface.
Some fprintfs are still left, especially in the debugger/ directory.
However, IMHO, it's not worth the effort to change the rest.
Fri May 22 21:58:35 1998 Morten Welinder <terra@diku.dk>
* [windows/keyboard.c]
Correct handling of keys "`-=[]\;',./".
Fri May 22 12:06:00 1998 Per Lindstrm <pelinstr@algonet.se>
* [include/windows.h] [relay32/kernel32.spec] [win32/console.c]
Added stub for ReadConsoleOutputCharacter32A.
Thu May 21 16:45:48 1998 Pascal Cuoq <pcuoq@ens-lyon.fr>
* [ole/ole2nls.c]
Began better implementation of LCMapString32A.
Not very well tested yet, and still need improvements.
* [controls/scroll.c]
Documented functions.
Wed May 20 21:37:56 1998 Peter Hunnisett <hunnise@nortel.ca>
* [include/windows.h][misc/main.c]
Change SystemParameterInfo to support SPI_GETHIGHCONTRAST. Also
include some missing SPI_ definitions.
* [include/dsound.h][multimedia/dsound.c][relay32/dplayx.spec]
Added stubs for DirectPlayLobbyCreate[AW]. Not sure if these
should go into a new files dplayx.c? Anyone care?
* [include/winnls.h]
Added two missing flags for the CompareString32 functions.
1998-06-01 12:44:35 +02:00
|
|
|
/* Registry security values */
|
2017-06-14 20:20:40 +02:00
|
|
|
#define OWNER_SECURITY_INFORMATION 0x00000001
|
|
|
|
#define GROUP_SECURITY_INFORMATION 0x00000002
|
|
|
|
#define DACL_SECURITY_INFORMATION 0x00000004
|
|
|
|
#define SACL_SECURITY_INFORMATION 0x00000008
|
|
|
|
#define LABEL_SECURITY_INFORMATION 0x00000010
|
|
|
|
|
|
|
|
#define REG_OPTION_RESERVED 0x00000000
|
|
|
|
#define REG_OPTION_NON_VOLATILE 0x00000000
|
|
|
|
#define REG_OPTION_VOLATILE 0x00000001
|
|
|
|
#define REG_OPTION_CREATE_LINK 0x00000002
|
|
|
|
#define REG_OPTION_BACKUP_RESTORE 0x00000004 /* FIXME */
|
|
|
|
#define REG_OPTION_OPEN_LINK 0x00000008
|
|
|
|
#define REG_LEGAL_OPTION (REG_OPTION_RESERVED | \
|
|
|
|
REG_OPTION_NON_VOLATILE | \
|
|
|
|
REG_OPTION_VOLATILE | \
|
|
|
|
REG_OPTION_CREATE_LINK | \
|
|
|
|
REG_OPTION_BACKUP_RESTORE | \
|
|
|
|
REG_OPTION_OPEN_LINK)
|
2000-03-26 16:41:10 +02:00
|
|
|
|
|
|
|
|
|
|
|
#define REG_CREATED_NEW_KEY 0x00000001
|
|
|
|
#define REG_OPENED_EXISTING_KEY 0x00000002
|
|
|
|
|
|
|
|
/* For RegNotifyChangeKeyValue */
|
2002-11-25 03:47:32 +01:00
|
|
|
#define REG_NOTIFY_CHANGE_NAME 0x01
|
|
|
|
#define REG_NOTIFY_CHANGE_ATTRIBUTES 0x02
|
|
|
|
#define REG_NOTIFY_CHANGE_LAST_SET 0x04
|
|
|
|
#define REG_NOTIFY_CHANGE_SECURITY 0x08
|
2018-04-30 00:42:35 +02:00
|
|
|
#define REG_NOTIFY_THREAD_AGNOSTIC 0x10000000
|
2000-03-26 16:41:10 +02:00
|
|
|
|
|
|
|
#define KEY_QUERY_VALUE 0x00000001
|
|
|
|
#define KEY_SET_VALUE 0x00000002
|
|
|
|
#define KEY_CREATE_SUB_KEY 0x00000004
|
|
|
|
#define KEY_ENUMERATE_SUB_KEYS 0x00000008
|
|
|
|
#define KEY_NOTIFY 0x00000010
|
|
|
|
#define KEY_CREATE_LINK 0x00000020
|
2008-07-24 12:12:21 +02:00
|
|
|
#define KEY_WOW64_64KEY 0x00000100
|
|
|
|
#define KEY_WOW64_32KEY 0x00000200
|
|
|
|
#define KEY_WOW64_RES 0x00000300
|
2000-03-26 16:41:10 +02:00
|
|
|
|
2003-03-12 21:14:35 +01:00
|
|
|
/* for RegKeyRestore flags */
|
|
|
|
#define REG_WHOLE_HIVE_VOLATILE 0x00000001
|
|
|
|
#define REG_REFRESH_HIVE 0x00000002
|
|
|
|
#define REG_NO_LAZY_FLUSH 0x00000004
|
|
|
|
#define REG_FORCE_RESTORE 0x00000008
|
|
|
|
|
2000-03-26 16:41:10 +02:00
|
|
|
#define KEY_READ ((STANDARD_RIGHTS_READ| \
|
|
|
|
KEY_QUERY_VALUE| \
|
|
|
|
KEY_ENUMERATE_SUB_KEYS| \
|
|
|
|
KEY_NOTIFY) \
|
|
|
|
& (~SYNCHRONIZE) \
|
|
|
|
)
|
|
|
|
#define KEY_WRITE ((STANDARD_RIGHTS_WRITE| \
|
|
|
|
KEY_SET_VALUE| \
|
|
|
|
KEY_CREATE_SUB_KEY) \
|
|
|
|
& (~SYNCHRONIZE) \
|
|
|
|
)
|
2002-01-12 22:17:51 +01:00
|
|
|
#define KEY_EXECUTE ((KEY_READ) & (~SYNCHRONIZE))
|
2000-03-26 16:41:10 +02:00
|
|
|
#define KEY_ALL_ACCESS ((STANDARD_RIGHTS_ALL| \
|
|
|
|
KEY_QUERY_VALUE| \
|
|
|
|
KEY_SET_VALUE| \
|
|
|
|
KEY_CREATE_SUB_KEY| \
|
|
|
|
KEY_ENUMERATE_SUB_KEYS| \
|
|
|
|
KEY_NOTIFY| \
|
|
|
|
KEY_CREATE_LINK) \
|
|
|
|
& (~SYNCHRONIZE) \
|
|
|
|
)
|
|
|
|
/* ------------------------------ end registry ------------------------------ */
|
|
|
|
|
Release 980601
Sun May 31 13:40:13 1998 Alexandre Julliard <julliard@lrc.epfl.ch>
* [if1632/signal.c]
Added display of exception name.
* [loader/task.c]
Yet another attempt at fixing SwitchStackTo/SwitchStackBack.
* [memory/selector.c] [relay32/builtin32.c] [tools/build.c]
[win32/kernel32.c]
Generate an assembly stub for Win32 register functions to make
their names available at link time.
* [programs/*/Makefile.in]
Added hacks to support old resource compiler.
Fri May 29 16:27:14 1998 Marcus Meissner <marcus@jet.franken.de>
* [tools/testrun]
Merge of my testscripts at home into one single perl program
(tested with perl5). Works only on Linux due to 'ps' and 'ipcs'
magic.
* [controls/menu.c]
Added some DefaultMenuItem stubs.
* [debugger/stabs.c]
Fixed stabs loading, now supports (int,int) typeinfo format used
by gcc-2.8 and egcs-1. If it still crashes, please mail me.
* [if1632/][relay32/]
Added msvideo.dll (stubs only)
Replaced some ptr by str for stringcases
Added some new stubs (VxDCall, FindCloseNotif....)
* [misc/network.c]
Some argument fixes.
* [misc/registry.c][misc/cpu.c]
Registry initialization partially rewritten and enhanced.
* [scheduler/*.c]
Some additions so we don't do kill(0,SIGUSR1) (kill processgroup
instead of targeted thread)
Added SetThreadContext.
Thu May 28 23:59:59 1998 Bertho Stultiens <bertho@akhphd.au.dk>
* [tools/wrc/*]
New resource compiler version 1.0.0 (28-May-1998)
* [Make.rules.in] [Makefile.in]
Changed and added rc rules to point to tools/wrc/wrc.
* [configure.in] [include/config.h.in]
Added check for function 'stricmp'.
* [include/resource.h]
Commented out the old resource structure to catch references.
It also includes wrc_rsc.h.
* [include/wrc_rsc.h]
New file. Definitions for the resources generated with wrc.
* [include/windows.h]
Added #ifdef RC_INVOKED to exclude stdarg.h.
Added SS_NOTIFY flag.
* [include/winnls.h]
Added SUBLANG_* definitions and corrected some defaults.
* [loader/libres.c]
Changed the sysres load functions to support wrc generated
resources.
* [resource/sysres_*.rc]
Added #include <windows.h>
* [resource/sysres.c]
Changed declarations to match wrc's output
* [resource/Makefile.in]
Changed rules to work with wrc.
* [tools/makedep.c]
Changed generation of .rc file dependencies to .s target.
Thu May 28 22:28:39 1998 Eric Kohl <ekohl@abo.rhein-zeitung.de>
* [files/file.c][include/windows.c][relay32/kernel32.spec]
Implemented GetFileAttributesEx32A/W.
* [misc/imagelist.h][include/commctrl.h][relay32/comctl32.spec]
Added ImageList_Read and ImageList_Write stubs.
Added ImageList_AddIcon function.
Added ImageList_LoadImage. It is the same as ImageList_LoadImage32A.
* [controls/header.c]
Fixed bitmap drawing bug.
Added full bitmap support.
* [include/commctrl.h]
Added missing header macros.
* [controls/toolbar.c][include/toolbar.h][include/commctrl.h]
[controls/commctrl.c] [relay32/comctl32.spec]
First implementation of toolbar control.
Implemented CreateToolbar, CreateToolbarEx and CreateMappedBitmap.
* [controls/progress.c][controls/status.c]
Some code cleanup.
* [controls/commctrl.c][include/commctrl.h][relay32/comctl32.spec]
Removed CreateStatusWindow16 and DrawStatusText16.
CreateStatusWindow is the same as CreateStatusWindow32A.
DrawStatusText is the same as DrawStatusText32A.
Thu May 28 16:01:28 1998 Matthew J. Francis <asbel@dial.pipex.com>
* [objects/bitmap.c] [objects/bitmap.h] [objects/oembitmap.c]
[objects/dc.c] [graphics/x11drv/bitblt.c]
Added partial implementation of CreateDIBSection, with great thanks
to Ulrich Weigand <weigand@informatik.uni-erlangen.de> for
contributing the bulk of the patch.
Wed May 27 19:04:31 1998 Ulrich Weigand <weigand@informatik.uni-erlangen.de>
* [win32/kernel32.c] [if1632/thunk.c] [include/flatthunk.h]
ThunkConnect16 and related functions moved to emulator.
* [loader/ne/segment.c]
Call DllEntryPoint with correct arguments.
* [relay32/builtin32.c]
Bugfix: Relay debugging did not work for multiple processes.
* [controls/menu.c]
Bugfix: dwItemData was not set for MF_OWNERDRAW menus.
* [if1632/relay.c] [relay32/relay386.c]
Relay messages converted to use DPRINTF.
* [controls/desktop.c] [relay32/user32.spec]
Implemented PaintDesktop.
* [files/profile.c] [if1632/kernel.spec] [misc/network.c]
[misc/printdrv.c] [relay32/winspool.spec]
[win32/ordinals.c] [relay32/kernel32.spec]
Some stubs added.
* [relay32/mpr.spec]
All ordinals were off by one.
Tue May 26 13:32:57 1998 Bill Hawes <whawes@star.net>
* [misc/lstr.c] [include/casemap.h] [tools/unimap.pl]
Added Unicode case conversion routines towupper/towlower,
with mapping tables casemap.h created by tools/unimap.pl.
* [misc/ntdll.c] [include/winnls.h] [relay32/ntdll.spec]
[relay32/advapi.spec]
Minimal implementation of IsTextUnicode, just enough to get
NT4 notepad to open ascii/unicode files.
* [Make.rules.in] [resources/sysres_En.rc]
Added include file dlgs.h for building resource files, so that
resources can refer to defined values (e.g. pshHelp).
* [misc/crtdll.c] [relay32/crtdll.spec]
Use towupper/towlower for 32W case conversions.
* [memory/string.c]
Use towupper for 32W case conversions.
* [ole/ole2nls.c]
Use towupper for 32W case conversions; fix mem leak; minor cleanup
* [controls/edit.c]
Added soft break flag to edit state. Print unknown action values
for WM_VSCROLL (action 190 occurs when running NT4 notepad.)
Mon May 25 22:42:40 1998 Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de>
* [files/file.c]
Care for a pathological case in SetFilePointer.
* [graphics/x11drv/xfont.c]
Handle longer Font names in LFD_ComposeLFD and try to catch errors.
* [loader/pe_image.c]
Unload Dummymodule when PE_LoadLibraryEx32A fails with
PE_LoadImage (makes Encarta 98 installer proceed).
* [misc/registry.c]
Move a check for a special case in RegCreateKeyEx32W after the
check for existence.
Tue May 25 20:18:26 1998 Matthew Becker <mbecker@glasscity.net>
* [misc/ntdll.c]
Added some stubs, just guessing at the size of their param lists.
* [misc/registry.c]
Added stubs for RegUnLoadKey, RegSetKeySecurity, RegSaveKey,
RegRestoreKey, and RegReplaceKey
* [programs/regtest/regtest.c]
Updated registry testing program.
Sun May 24 18:11:40 1998 Alex Priem <alexp@sci.kun.nl>
* [file/profile.c]
Added flag 'return_values' to PROFILE_GetSection.
Sun May 24 13:41:10 1998 James Juran <jrj120@psu.edu>
* [misc/shell.c] [files/directory.c]
Documentation/debugging info additions.
* [*/*.c] [include/*.h]
Moved many extern function definitions to appropriate header files.
Cleaned up a few compile warnings.
If #include "debug.h" is present, removed #include <stdio.h>.
debug.h includes stdio.h, so it is not necessary to include both.
* [graphics/*.c] [if1632/signal.c] [ipc/*.c] [scheduler/*.c]
[win32/*.c] [windows/*.c]
Final patch to convert fprintf statements to new debugging interface.
Some fprintfs are still left, especially in the debugger/ directory.
However, IMHO, it's not worth the effort to change the rest.
Fri May 22 21:58:35 1998 Morten Welinder <terra@diku.dk>
* [windows/keyboard.c]
Correct handling of keys "`-=[]\;',./".
Fri May 22 12:06:00 1998 Per Lindstrm <pelinstr@algonet.se>
* [include/windows.h] [relay32/kernel32.spec] [win32/console.c]
Added stub for ReadConsoleOutputCharacter32A.
Thu May 21 16:45:48 1998 Pascal Cuoq <pcuoq@ens-lyon.fr>
* [ole/ole2nls.c]
Began better implementation of LCMapString32A.
Not very well tested yet, and still need improvements.
* [controls/scroll.c]
Documented functions.
Wed May 20 21:37:56 1998 Peter Hunnisett <hunnise@nortel.ca>
* [include/windows.h][misc/main.c]
Change SystemParameterInfo to support SPI_GETHIGHCONTRAST. Also
include some missing SPI_ definitions.
* [include/dsound.h][multimedia/dsound.c][relay32/dplayx.spec]
Added stubs for DirectPlayLobbyCreate[AW]. Not sure if these
should go into a new files dplayx.c? Anyone care?
* [include/winnls.h]
Added two missing flags for the CompareString32 functions.
1998-06-01 12:44:35 +02:00
|
|
|
|
2000-09-19 04:43:00 +02:00
|
|
|
#define EVENTLOG_SUCCESS 0x0000
|
|
|
|
#define EVENTLOG_ERROR_TYPE 0x0001
|
|
|
|
#define EVENTLOG_WARNING_TYPE 0x0002
|
|
|
|
#define EVENTLOG_INFORMATION_TYPE 0x0004
|
|
|
|
#define EVENTLOG_AUDIT_SUCCESS 0x0008
|
|
|
|
#define EVENTLOG_AUDIT_FAILURE 0x0010
|
|
|
|
|
2009-11-01 16:02:40 +01:00
|
|
|
#define EVENTLOG_SEQUENTIAL_READ 0x0001
|
|
|
|
#define EVENTLOG_SEEK_READ 0x0002
|
|
|
|
#define EVENTLOG_FORWARDS_READ 0x0004
|
|
|
|
#define EVENTLOG_BACKWARDS_READ 0x0008
|
|
|
|
|
|
|
|
typedef struct _EVENTLOGRECORD {
|
|
|
|
DWORD Length;
|
|
|
|
DWORD Reserved;
|
|
|
|
DWORD RecordNumber;
|
|
|
|
DWORD TimeGenerated;
|
|
|
|
DWORD TimeWritten;
|
|
|
|
DWORD EventID;
|
|
|
|
WORD EventType;
|
|
|
|
WORD NumStrings;
|
|
|
|
WORD EventCategory;
|
|
|
|
WORD ReservedFlags;
|
|
|
|
DWORD ClosingRecordNumber;
|
|
|
|
DWORD StringOffset;
|
|
|
|
DWORD UserSidLength;
|
|
|
|
DWORD UserSidOffset;
|
|
|
|
DWORD DataLength;
|
|
|
|
DWORD DataOffset;
|
|
|
|
} EVENTLOGRECORD, *PEVENTLOGRECORD;
|
|
|
|
|
2000-09-19 04:43:00 +02:00
|
|
|
#define SERVICE_BOOT_START 0x00000000
|
|
|
|
#define SERVICE_SYSTEM_START 0x00000001
|
|
|
|
#define SERVICE_AUTO_START 0x00000002
|
|
|
|
#define SERVICE_DEMAND_START 0x00000003
|
|
|
|
#define SERVICE_DISABLED 0x00000004
|
|
|
|
|
|
|
|
#define SERVICE_ERROR_IGNORE 0x00000000
|
|
|
|
#define SERVICE_ERROR_NORMAL 0x00000001
|
|
|
|
#define SERVICE_ERROR_SEVERE 0x00000002
|
|
|
|
#define SERVICE_ERROR_CRITICAL 0x00000003
|
|
|
|
|
|
|
|
/* Service types */
|
|
|
|
#define SERVICE_KERNEL_DRIVER 0x00000001
|
|
|
|
#define SERVICE_FILE_SYSTEM_DRIVER 0x00000002
|
|
|
|
#define SERVICE_ADAPTER 0x00000004
|
|
|
|
#define SERVICE_RECOGNIZER_DRIVER 0x00000008
|
|
|
|
|
|
|
|
#define SERVICE_DRIVER ( SERVICE_KERNEL_DRIVER | SERVICE_FILE_SYSTEM_DRIVER | \
|
|
|
|
SERVICE_RECOGNIZER_DRIVER )
|
|
|
|
|
|
|
|
#define SERVICE_WIN32_OWN_PROCESS 0x00000010
|
|
|
|
#define SERVICE_WIN32_SHARE_PROCESS 0x00000020
|
|
|
|
#define SERVICE_WIN32 (SERVICE_WIN32_OWN_PROCESS | SERVICE_WIN32_SHARE_PROCESS)
|
|
|
|
|
|
|
|
#define SERVICE_INTERACTIVE_PROCESS 0x00000100
|
|
|
|
|
|
|
|
#define SERVICE_TYPE_ALL ( SERVICE_WIN32 | SERVICE_ADAPTER | \
|
|
|
|
SERVICE_DRIVER | SERVICE_INTERACTIVE_PROCESS )
|
|
|
|
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
typedef enum _CM_SERVICE_NODE_TYPE
|
2000-09-19 04:43:00 +02:00
|
|
|
{
|
|
|
|
DriverType = SERVICE_KERNEL_DRIVER,
|
|
|
|
FileSystemType = SERVICE_FILE_SYSTEM_DRIVER,
|
|
|
|
Win32ServiceOwnProcess = SERVICE_WIN32_OWN_PROCESS,
|
|
|
|
Win32ServiceShareProcess = SERVICE_WIN32_SHARE_PROCESS,
|
|
|
|
AdapterType = SERVICE_ADAPTER,
|
|
|
|
RecognizerType = SERVICE_RECOGNIZER_DRIVER
|
|
|
|
} SERVICE_NODE_TYPE;
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
typedef enum _CM_SERVICE_LOAD_TYPE
|
2000-09-19 04:43:00 +02:00
|
|
|
{
|
|
|
|
BootLoad = SERVICE_BOOT_START,
|
|
|
|
SystemLoad = SERVICE_SYSTEM_START,
|
|
|
|
AutoLoad = SERVICE_AUTO_START,
|
|
|
|
DemandLoad = SERVICE_DEMAND_START,
|
|
|
|
DisableLoad = SERVICE_DISABLED
|
|
|
|
} SERVICE_LOAD_TYPE;
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
typedef enum _CM_ERROR_CONTROL_TYPE
|
2000-09-19 04:43:00 +02:00
|
|
|
{
|
|
|
|
IgnoreError = SERVICE_ERROR_IGNORE,
|
|
|
|
NormalError = SERVICE_ERROR_NORMAL,
|
|
|
|
SevereError = SERVICE_ERROR_SEVERE,
|
|
|
|
CriticalError = SERVICE_ERROR_CRITICAL
|
|
|
|
} SERVICE_ERROR_TYPE;
|
|
|
|
|
2018-01-04 12:15:17 +01:00
|
|
|
NTSYSAPI SIZE_T WINAPI RtlCompareMemory(const VOID*, const VOID*, SIZE_T);
|
2000-09-19 04:43:00 +02:00
|
|
|
|
2000-02-26 20:35:50 +01:00
|
|
|
#define RtlEqualMemory(Destination, Source, Length) (!memcmp((Destination),(Source),(Length)))
|
|
|
|
#define RtlMoveMemory(Destination, Source, Length) memmove((Destination),(Source),(Length))
|
|
|
|
#define RtlCopyMemory(Destination, Source, Length) memcpy((Destination),(Source),(Length))
|
|
|
|
#define RtlFillMemory(Destination, Length, Fill) memset((Destination),(Fill),(Length))
|
|
|
|
#define RtlZeroMemory(Destination, Length) memset((Destination),0,(Length))
|
|
|
|
|
2017-02-13 09:17:57 +01:00
|
|
|
static FORCEINLINE void *RtlSecureZeroMemory(void *buffer, SIZE_T length)
|
|
|
|
{
|
2017-02-23 12:54:29 +01:00
|
|
|
volatile char *ptr = (volatile char *)buffer;
|
2017-02-13 09:17:57 +01:00
|
|
|
|
|
|
|
while (length--) *ptr++ = 0;
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
2003-08-28 23:43:34 +02:00
|
|
|
#include <guiddef.h>
|
2000-10-14 01:13:01 +02:00
|
|
|
|
2003-11-11 23:03:24 +01:00
|
|
|
typedef struct _OBJECT_TYPE_LIST {
|
|
|
|
WORD Level;
|
|
|
|
WORD Sbz;
|
|
|
|
GUID *ObjectType;
|
|
|
|
} OBJECT_TYPE_LIST, *POBJECT_TYPE_LIST;
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
typedef struct _RTL_CRITICAL_SECTION_DEBUG
|
2001-02-20 01:49:12 +01:00
|
|
|
{
|
|
|
|
WORD Type;
|
|
|
|
WORD CreatorBackTraceIndex;
|
|
|
|
struct _RTL_CRITICAL_SECTION *CriticalSection;
|
|
|
|
LIST_ENTRY ProcessLocksList;
|
|
|
|
DWORD EntryCount;
|
|
|
|
DWORD ContentionCount;
|
2005-09-09 12:19:44 +02:00
|
|
|
#ifdef __WINESRC__ /* in Wine we store the name here */
|
|
|
|
DWORD_PTR Spare[8/sizeof(DWORD_PTR)];
|
|
|
|
#else
|
2001-02-20 01:49:12 +01:00
|
|
|
DWORD Spare[ 2 ];
|
2005-09-09 12:19:44 +02:00
|
|
|
#endif
|
2001-02-20 01:49:12 +01:00
|
|
|
} RTL_CRITICAL_SECTION_DEBUG, *PRTL_CRITICAL_SECTION_DEBUG, RTL_RESOURCE_DEBUG, *PRTL_RESOURCE_DEBUG;
|
|
|
|
|
|
|
|
typedef struct _RTL_CRITICAL_SECTION {
|
|
|
|
PRTL_CRITICAL_SECTION_DEBUG DebugInfo;
|
|
|
|
LONG LockCount;
|
|
|
|
LONG RecursionCount;
|
|
|
|
HANDLE OwningThread;
|
|
|
|
HANDLE LockSemaphore;
|
|
|
|
ULONG_PTR SpinCount;
|
|
|
|
} RTL_CRITICAL_SECTION, *PRTL_CRITICAL_SECTION;
|
|
|
|
|
2008-06-20 09:19:09 +02:00
|
|
|
#define RTL_CRITICAL_SECTION_FLAG_NO_DEBUG_INFO 0x1000000
|
|
|
|
#define RTL_CRITICAL_SECTION_FLAG_DYNAMIC_SPIN 0x2000000
|
|
|
|
#define RTL_CRITICAL_SECTION_FLAG_STATIC_INIT 0x4000000
|
|
|
|
#define RTL_CRITICAL_SECTION_ALL_FLAG_BITS 0xFF000000
|
|
|
|
#define RTL_CRITICAL_SECTION_FLAG_RESERVED (RTL_CRITICAL_SECTION_ALL_FLAG_BITS & ~0x7000000)
|
|
|
|
|
2011-07-06 01:10:22 +02:00
|
|
|
typedef struct _RTL_SRWLOCK {
|
|
|
|
PVOID Ptr;
|
|
|
|
} RTL_SRWLOCK, *PRTL_SRWLOCK;
|
|
|
|
|
|
|
|
#define RTL_SRWLOCK_INIT {0}
|
|
|
|
|
2012-09-03 13:54:46 +02:00
|
|
|
typedef struct _RTL_CONDITION_VARIABLE {
|
|
|
|
PVOID Ptr;
|
|
|
|
} RTL_CONDITION_VARIABLE, *PRTL_CONDITION_VARIABLE;
|
|
|
|
#define RTL_CONDITION_VARIABLE_INIT {0}
|
|
|
|
#define RTL_CONDITION_VARIABLE_LOCKMODE_SHARED 0x1
|
|
|
|
|
2002-10-07 23:46:02 +02:00
|
|
|
typedef VOID (NTAPI * WAITORTIMERCALLBACKFUNC) (PVOID, BOOLEAN );
|
2008-02-29 10:19:43 +01:00
|
|
|
typedef VOID (NTAPI * PFLS_CALLBACK_FUNCTION) ( PVOID );
|
2002-10-07 23:46:02 +02:00
|
|
|
|
2012-07-22 16:33:14 +02:00
|
|
|
#define RTL_RUN_ONCE_INIT {0}
|
|
|
|
typedef union _RTL_RUN_ONCE {
|
|
|
|
PVOID Ptr;
|
|
|
|
} RTL_RUN_ONCE, *PRTL_RUN_ONCE;
|
|
|
|
|
2012-07-24 11:39:12 +02:00
|
|
|
#define RTL_RUN_ONCE_CHECK_ONLY 0x00000001
|
|
|
|
#define RTL_RUN_ONCE_ASYNC 0x00000002
|
|
|
|
#define RTL_RUN_ONCE_INIT_FAILED 0x00000004
|
|
|
|
|
|
|
|
typedef DWORD WINAPI RTL_RUN_ONCE_INIT_FN(PRTL_RUN_ONCE, PVOID, PVOID*);
|
|
|
|
typedef RTL_RUN_ONCE_INIT_FN *PRTL_RUN_ONCE_INIT_FN;
|
|
|
|
NTSYSAPI VOID WINAPI RtlRunOnceInitialize(PRTL_RUN_ONCE);
|
|
|
|
NTSYSAPI DWORD WINAPI RtlRunOnceExecuteOnce(PRTL_RUN_ONCE,PRTL_RUN_ONCE_INIT_FN,PVOID,PVOID*);
|
2013-08-28 21:10:50 +02:00
|
|
|
NTSYSAPI DWORD WINAPI RtlRunOnceBeginInitialize(PRTL_RUN_ONCE, DWORD, PVOID*);
|
2013-05-23 19:46:45 +02:00
|
|
|
NTSYSAPI DWORD WINAPI RtlRunOnceComplete(PRTL_RUN_ONCE, DWORD, PVOID);
|
2012-07-22 16:33:14 +02:00
|
|
|
|
2004-08-24 22:16:25 +02:00
|
|
|
#include <pshpack8.h>
|
2003-09-19 02:06:45 +02:00
|
|
|
typedef struct _IO_COUNTERS {
|
2004-08-24 22:16:25 +02:00
|
|
|
ULONGLONG DECLSPEC_ALIGN(8) ReadOperationCount;
|
|
|
|
ULONGLONG DECLSPEC_ALIGN(8) WriteOperationCount;
|
|
|
|
ULONGLONG DECLSPEC_ALIGN(8) OtherOperationCount;
|
|
|
|
ULONGLONG DECLSPEC_ALIGN(8) ReadTransferCount;
|
|
|
|
ULONGLONG DECLSPEC_ALIGN(8) WriteTransferCount;
|
|
|
|
ULONGLONG DECLSPEC_ALIGN(8) OtherTransferCount;
|
|
|
|
} IO_COUNTERS, *PIO_COUNTERS;
|
|
|
|
#include <poppack.h>
|
2003-09-19 02:06:45 +02:00
|
|
|
|
2003-09-24 07:26:00 +02:00
|
|
|
typedef struct {
|
|
|
|
DWORD dwOSVersionInfoSize;
|
|
|
|
DWORD dwMajorVersion;
|
|
|
|
DWORD dwMinorVersion;
|
|
|
|
DWORD dwBuildNumber;
|
|
|
|
DWORD dwPlatformId;
|
|
|
|
CHAR szCSDVersion[128];
|
|
|
|
} OSVERSIONINFOA, *POSVERSIONINFOA, *LPOSVERSIONINFOA;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
DWORD dwOSVersionInfoSize;
|
|
|
|
DWORD dwMajorVersion;
|
|
|
|
DWORD dwMinorVersion;
|
|
|
|
DWORD dwBuildNumber;
|
|
|
|
DWORD dwPlatformId;
|
|
|
|
WCHAR szCSDVersion[128];
|
|
|
|
} OSVERSIONINFOW, *POSVERSIONINFOW, *LPOSVERSIONINFOW, RTL_OSVERSIONINFOW, *PRTL_OSVERSIONINFOW;
|
|
|
|
|
|
|
|
DECL_WINELIB_TYPE_AW(OSVERSIONINFO)
|
|
|
|
DECL_WINELIB_TYPE_AW(POSVERSIONINFO)
|
|
|
|
DECL_WINELIB_TYPE_AW(LPOSVERSIONINFO)
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
DWORD dwOSVersionInfoSize;
|
|
|
|
DWORD dwMajorVersion;
|
|
|
|
DWORD dwMinorVersion;
|
|
|
|
DWORD dwBuildNumber;
|
|
|
|
DWORD dwPlatformId;
|
|
|
|
CHAR szCSDVersion[128];
|
|
|
|
WORD wServicePackMajor;
|
|
|
|
WORD wServicePackMinor;
|
|
|
|
WORD wSuiteMask;
|
|
|
|
BYTE wProductType;
|
|
|
|
BYTE wReserved;
|
|
|
|
} OSVERSIONINFOEXA, *POSVERSIONINFOEXA, *LPOSVERSIONINFOEXA;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
DWORD dwOSVersionInfoSize;
|
|
|
|
DWORD dwMajorVersion;
|
|
|
|
DWORD dwMinorVersion;
|
|
|
|
DWORD dwBuildNumber;
|
|
|
|
DWORD dwPlatformId;
|
|
|
|
WCHAR szCSDVersion[128];
|
|
|
|
WORD wServicePackMajor;
|
|
|
|
WORD wServicePackMinor;
|
|
|
|
WORD wSuiteMask;
|
|
|
|
BYTE wProductType;
|
|
|
|
BYTE wReserved;
|
|
|
|
} OSVERSIONINFOEXW, *POSVERSIONINFOEXW, *LPOSVERSIONINFOEXW, RTL_OSVERSIONINFOEXW, *PRTL_OSVERSIONINFOEXW;
|
|
|
|
|
|
|
|
DECL_WINELIB_TYPE_AW(OSVERSIONINFOEX)
|
|
|
|
DECL_WINELIB_TYPE_AW(POSVERSIONINFOEX)
|
|
|
|
DECL_WINELIB_TYPE_AW(LPOSVERSIONINFOEX)
|
|
|
|
|
2007-11-07 12:28:59 +01:00
|
|
|
NTSYSAPI ULONGLONG WINAPI VerSetConditionMask(ULONGLONG,DWORD,BYTE);
|
2003-09-24 07:26:00 +02:00
|
|
|
|
|
|
|
#define VER_SET_CONDITION(_m_,_t_,_c_) ((_m_)=VerSetConditionMask((_m_),(_t_),(_c_)))
|
|
|
|
|
|
|
|
#define VER_PLATFORM_WIN32s 0
|
|
|
|
#define VER_PLATFORM_WIN32_WINDOWS 1
|
|
|
|
#define VER_PLATFORM_WIN32_NT 2
|
|
|
|
|
|
|
|
#define VER_MINORVERSION 0x00000001
|
|
|
|
#define VER_MAJORVERSION 0x00000002
|
|
|
|
#define VER_BUILDNUMBER 0x00000004
|
|
|
|
#define VER_PLATFORMID 0x00000008
|
|
|
|
#define VER_SERVICEPACKMINOR 0x00000010
|
|
|
|
#define VER_SERVICEPACKMAJOR 0x00000020
|
|
|
|
#define VER_SUITENAME 0x00000040
|
|
|
|
#define VER_PRODUCT_TYPE 0x00000080
|
|
|
|
|
|
|
|
#define VER_NT_WORKSTATION 1
|
|
|
|
#define VER_NT_DOMAIN_CONTROLLER 2
|
|
|
|
#define VER_NT_SERVER 3
|
|
|
|
|
|
|
|
#define VER_SUITE_SMALLBUSINESS 0x00000001
|
|
|
|
#define VER_SUITE_ENTERPRISE 0x00000002
|
|
|
|
#define VER_SUITE_BACKOFFICE 0x00000004
|
|
|
|
#define VER_SUITE_COMMUNICATIONS 0x00000008
|
|
|
|
#define VER_SUITE_TERMINAL 0x00000010
|
|
|
|
#define VER_SUITE_SMALLBUSINESS_RESTRICTED 0x00000020
|
|
|
|
#define VER_SUITE_EMBEDDEDNT 0x00000040
|
|
|
|
#define VER_SUITE_DATACENTER 0x00000080
|
|
|
|
#define VER_SUITE_SINGLEUSERTS 0x00000100
|
|
|
|
#define VER_SUITE_PERSONAL 0x00000200
|
2004-10-11 21:52:10 +02:00
|
|
|
#define VER_SUITE_BLADE 0x00000400
|
2010-12-21 17:58:21 +01:00
|
|
|
#define VER_SUITE_EMBEDDED_RESTRICTED 0x00000800
|
|
|
|
#define VER_SUITE_SECURITY_APPLIANCE 0x00001000
|
|
|
|
#define VER_SUITE_STORAGE_SERVER 0x00002000
|
|
|
|
#define VER_SUITE_COMPUTE_SERVER 0x00004000
|
|
|
|
#define VER_SUITE_WH_SERVER 0x00008000
|
2003-09-24 07:26:00 +02:00
|
|
|
|
|
|
|
#define VER_EQUAL 1
|
|
|
|
#define VER_GREATER 2
|
|
|
|
#define VER_GREATER_EQUAL 3
|
|
|
|
#define VER_LESS 4
|
|
|
|
#define VER_LESS_EQUAL 5
|
|
|
|
#define VER_AND 6
|
|
|
|
#define VER_OR 7
|
|
|
|
|
2007-03-28 18:05:03 +02:00
|
|
|
typedef struct _ACTIVATION_CONTEXT_DETAILED_INFORMATION {
|
|
|
|
DWORD dwFlags;
|
|
|
|
DWORD ulFormatVersion;
|
|
|
|
DWORD ulAssemblyCount;
|
|
|
|
DWORD ulRootManifestPathType;
|
|
|
|
DWORD ulRootManifestPathChars;
|
|
|
|
DWORD ulRootConfigurationPathType;
|
|
|
|
DWORD ulRootConfigurationPathChars;
|
|
|
|
DWORD ulAppDirPathType;
|
|
|
|
DWORD ulAppDirPathChars;
|
|
|
|
PCWSTR lpRootManifestPath;
|
|
|
|
PCWSTR lpRootConfigurationPath;
|
|
|
|
PCWSTR lpAppDirPath;
|
|
|
|
} ACTIVATION_CONTEXT_DETAILED_INFORMATION, *PACTIVATION_CONTEXT_DETAILED_INFORMATION;
|
|
|
|
|
|
|
|
typedef struct _ACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION {
|
|
|
|
DWORD ulFlags;
|
|
|
|
DWORD ulEncodedAssemblyIdentityLength;
|
|
|
|
DWORD ulManifestPathType;
|
|
|
|
DWORD ulManifestPathLength;
|
|
|
|
LARGE_INTEGER liManifestLastWriteTime;
|
|
|
|
DWORD ulPolicyPathType;
|
|
|
|
DWORD ulPolicyPathLength;
|
|
|
|
LARGE_INTEGER liPolicyLastWriteTime;
|
|
|
|
DWORD ulMetadataSatelliteRosterIndex;
|
|
|
|
DWORD ulManifestVersionMajor;
|
|
|
|
DWORD ulManifestVersionMinor;
|
|
|
|
DWORD ulPolicyVersionMajor;
|
|
|
|
DWORD ulPolicyVersionMinor;
|
|
|
|
DWORD ulAssemblyDirectoryNameLength;
|
|
|
|
PCWSTR lpAssemblyEncodedAssemblyIdentity;
|
|
|
|
PCWSTR lpAssemblyManifestPath;
|
|
|
|
PCWSTR lpAssemblyPolicyPath;
|
|
|
|
PCWSTR lpAssemblyDirectoryName;
|
|
|
|
DWORD ulFileCount;
|
|
|
|
} ACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION, *PACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION;
|
|
|
|
|
|
|
|
typedef struct _ACTIVATION_CONTEXT_QUERY_INDEX {
|
|
|
|
DWORD ulAssemblyIndex;
|
|
|
|
DWORD ulFileIndexInAssembly;
|
|
|
|
} ACTIVATION_CONTEXT_QUERY_INDEX, *PACTIVATION_CONTEXT_QUERY_INDEX;
|
|
|
|
|
|
|
|
typedef const struct _ACTIVATION_CONTEXT_QUERY_INDEX *PCACTIVATION_CONTEXT_QUERY_INDEX;
|
|
|
|
|
|
|
|
typedef struct _ASSEMBLY_FILE_DETAILED_INFORMATION {
|
|
|
|
DWORD ulFlags;
|
|
|
|
DWORD ulFilenameLength;
|
|
|
|
DWORD ulPathLength;
|
|
|
|
PCWSTR lpFileName;
|
|
|
|
PCWSTR lpFilePath;
|
|
|
|
} ASSEMBLY_FILE_DETAILED_INFORMATION, *PASSEMBLY_FILE_DETAILED_INFORMATION;
|
|
|
|
|
|
|
|
typedef const ASSEMBLY_FILE_DETAILED_INFORMATION *PCASSEMBLY_FILE_DETAILED_INFORMATION;
|
|
|
|
|
2018-02-06 16:07:41 +01:00
|
|
|
typedef enum {
|
|
|
|
ACTCX_COMPATIBILITY_ELEMENT_TYPE_UNKNOWN = 0,
|
|
|
|
ACTCX_COMPATIBILITY_ELEMENT_TYPE_OS
|
|
|
|
} ACTCTX_COMPATIBILITY_ELEMENT_TYPE;
|
|
|
|
|
|
|
|
typedef struct _COMPATIBILITY_CONTEXT_ELEMENT {
|
|
|
|
GUID Id;
|
|
|
|
ACTCTX_COMPATIBILITY_ELEMENT_TYPE Type;
|
|
|
|
} COMPATIBILITY_CONTEXT_ELEMENT, *PCOMPATIBILITY_CONTEXT_ELEMENT;
|
|
|
|
|
|
|
|
#if !defined(__WINESRC__) && (defined(_MSC_EXTENSIONS) || ((defined(__GNUC__) && __GNUC__ >= 3)))
|
|
|
|
typedef struct _ACTIVATION_CONTEXT_COMPATIBILITY_INFORMATION {
|
|
|
|
DWORD ElementCount;
|
|
|
|
COMPATIBILITY_CONTEXT_ELEMENT Elements[];
|
|
|
|
} ACTIVATION_CONTEXT_COMPATIBILITY_INFORMATION, *PACTIVATION_CONTEXT_COMPATIBILITY_INFORMATION;
|
|
|
|
#endif
|
|
|
|
|
2018-02-13 03:58:12 +01:00
|
|
|
typedef enum {
|
|
|
|
ACTCTX_RUN_LEVEL_UNSPECIFIED = 0,
|
|
|
|
ACTCTX_RUN_LEVEL_AS_INVOKER,
|
|
|
|
ACTCTX_RUN_LEVEL_HIGHEST_AVAILABLE,
|
|
|
|
ACTCTX_RUN_LEVEL_REQUIRE_ADMIN,
|
|
|
|
ACTCTX_RUN_LEVEL_NUMBERS
|
|
|
|
} ACTCTX_REQUESTED_RUN_LEVEL;
|
|
|
|
|
|
|
|
typedef struct _ACTIVATION_CONTEXT_RUN_LEVEL_INFORMATION {
|
|
|
|
DWORD ulFlags;
|
|
|
|
ACTCTX_REQUESTED_RUN_LEVEL RunLevel;
|
|
|
|
DWORD UiAccess;
|
|
|
|
} ACTIVATION_CONTEXT_RUN_LEVEL_INFORMATION, *PACTIVATION_CONTEXT_RUN_LEVEL_INFORMATION;
|
|
|
|
|
|
|
|
typedef const struct _ACTIVATION_CONTEXT_RUN_LEVEL_INFORMATION *PCACTIVATION_CONTEXT_RUN_LEVEL_INFORMATION;
|
|
|
|
|
2007-03-28 18:05:03 +02:00
|
|
|
typedef enum _ACTIVATION_CONTEXT_INFO_CLASS {
|
|
|
|
ActivationContextBasicInformation = 1,
|
|
|
|
ActivationContextDetailedInformation = 2,
|
|
|
|
AssemblyDetailedInformationInActivationContext = 3,
|
|
|
|
FileInformationInAssemblyOfAssemblyInActivationContext = 4,
|
2018-02-13 03:58:12 +01:00
|
|
|
RunlevelInformationInActivationContext = 5,
|
2018-02-06 16:07:41 +01:00
|
|
|
CompatibilityInformationInActivationContext = 6,
|
2018-02-13 03:58:12 +01:00
|
|
|
ActivationContextManifestResourceName = 7,
|
2007-03-28 18:05:03 +02:00
|
|
|
MaxActivationContextInfoClass,
|
2018-02-13 03:58:12 +01:00
|
|
|
AssemblyDetailedInformationInActivationContxt = AssemblyDetailedInformationInActivationContext,
|
|
|
|
FileInformationInAssemblyOfAssemblyInActivationContxt = FileInformationInAssemblyOfAssemblyInActivationContext
|
2007-03-28 18:05:03 +02:00
|
|
|
} ACTIVATION_CONTEXT_INFO_CLASS;
|
|
|
|
|
|
|
|
#define ACTIVATION_CONTEXT_PATH_TYPE_NONE 1
|
|
|
|
#define ACTIVATION_CONTEXT_PATH_TYPE_WIN32_FILE 2
|
|
|
|
#define ACTIVATION_CONTEXT_PATH_TYPE_URL 3
|
|
|
|
#define ACTIVATION_CONTEXT_PATH_TYPE_ASSEMBLYREF 4
|
|
|
|
|
|
|
|
#define ACTIVATION_CONTEXT_SECTION_ASSEMBLY_INFORMATION 1
|
|
|
|
#define ACTIVATION_CONTEXT_SECTION_DLL_REDIRECTION 2
|
|
|
|
#define ACTIVATION_CONTEXT_SECTION_WINDOW_CLASS_REDIRECTION 3
|
|
|
|
#define ACTIVATION_CONTEXT_SECTION_COM_SERVER_REDIRECTION 4
|
|
|
|
#define ACTIVATION_CONTEXT_SECTION_COM_INTERFACE_REDIRECTION 5
|
|
|
|
#define ACTIVATION_CONTEXT_SECTION_COM_TYPE_LIBRARY_REDIRECTION 6
|
|
|
|
#define ACTIVATION_CONTEXT_SECTION_COM_PROGID_REDIRECTION 7
|
|
|
|
#define ACTIVATION_CONTEXT_SECTION_GLOBAL_OBJECT_RENAME_TABLE 8
|
|
|
|
#define ACTIVATION_CONTEXT_SECTION_CLR_SURROGATES 9
|
2018-03-23 09:12:52 +01:00
|
|
|
#define ACTIVATION_CONTEXT_SECTION_APPLICATION_SETTINGS 10
|
|
|
|
#define ACTIVATION_CONTEXT_SECTION_COMPATIBILITY_INFO 11
|
2007-03-28 18:05:03 +02:00
|
|
|
|
2008-09-04 22:51:02 +02:00
|
|
|
typedef enum _JOBOBJECTINFOCLASS
|
|
|
|
{
|
|
|
|
JobObjectBasicAccountingInformation = 1,
|
|
|
|
JobObjectBasicLimitInformation,
|
|
|
|
JobObjectBasicProcessIdList,
|
|
|
|
JobObjectBasicUIRestrictions,
|
|
|
|
JobObjectSecurityLimitInformation,
|
|
|
|
JobObjectEndOfJobTimeInformation,
|
|
|
|
JobObjectAssociateCompletionPortInformation,
|
|
|
|
JobObjectBasicAndIoAccountingInformation,
|
|
|
|
JobObjectExtendedLimitInformation,
|
|
|
|
JobObjectJobSetInformation,
|
|
|
|
MaxJobObjectInfoClass
|
|
|
|
} JOBOBJECTINFOCLASS;
|
|
|
|
|
2013-10-13 09:48:13 +02:00
|
|
|
typedef struct _JOBOBJECT_BASIC_ACCOUNTING_INFORMATION {
|
|
|
|
LARGE_INTEGER TotalUserTime;
|
|
|
|
LARGE_INTEGER TotalKernelTime;
|
|
|
|
LARGE_INTEGER ThisPeriodTotalUserTime;
|
|
|
|
LARGE_INTEGER ThisPeriodTotalKernelTime;
|
|
|
|
DWORD TotalPageFaultCount;
|
|
|
|
DWORD TotalProcesses;
|
|
|
|
DWORD ActiveProcesses;
|
|
|
|
DWORD TotalTerminatedProcesses;
|
|
|
|
} JOBOBJECT_BASIC_ACCOUNTING_INFORMATION, *PJOBOBJECT_BASIC_ACCOUNTING_INFORMATION;
|
|
|
|
|
|
|
|
typedef struct _JOBOBJECT_BASIC_LIMIT_INFORMATION {
|
|
|
|
LARGE_INTEGER PerProcessUserTimeLimit;
|
|
|
|
LARGE_INTEGER PerJobUserTimeLimit;
|
|
|
|
DWORD LimitFlags;
|
|
|
|
SIZE_T MinimumWorkingSetSize;
|
|
|
|
SIZE_T MaximumWorkingSetSize;
|
|
|
|
DWORD ActiveProcessLimit;
|
|
|
|
ULONG_PTR Affinity;
|
|
|
|
DWORD PriorityClass;
|
|
|
|
DWORD SchedulingClass;
|
|
|
|
} JOBOBJECT_BASIC_LIMIT_INFORMATION, *PJOBOBJECT_BASIC_LIMIT_INFORMATION;
|
|
|
|
|
|
|
|
typedef struct _JOBOBJECT_BASIC_PROCESS_ID_LIST {
|
|
|
|
DWORD NumberOfAssignedProcesses;
|
|
|
|
DWORD NumberOfProcessIdsInList;
|
|
|
|
ULONG_PTR ProcessIdList[1];
|
|
|
|
} JOBOBJECT_BASIC_PROCESS_ID_LIST, *PJOBOBJECT_BASIC_PROCESS_ID_LIST;
|
|
|
|
|
|
|
|
typedef struct _JOBOBJECT_BASIC_UI_RESTRICTIONS {
|
|
|
|
DWORD UIRestrictionsClass;
|
|
|
|
} JOBOBJECT_BASIC_UI_RESTRICTIONS, *PJOBOBJECT_BASIC_UI_RESTRICTIONS;
|
|
|
|
|
|
|
|
typedef struct _JOBOBJECT_SECURITY_LIMIT_INFORMATION {
|
|
|
|
DWORD SecurityLimitFlags;
|
|
|
|
HANDLE JobToken;
|
|
|
|
PTOKEN_GROUPS SidsToDisable;
|
|
|
|
PTOKEN_PRIVILEGES PrivilegesToDelete;
|
|
|
|
PTOKEN_GROUPS RestrictedSids;
|
|
|
|
} JOBOBJECT_SECURITY_LIMIT_INFORMATION, *PJOBOBJECT_SECURITY_LIMIT_INFORMATION;
|
|
|
|
|
|
|
|
typedef struct _JOBOBJECT_END_OF_JOB_TIME_INFORMATION {
|
|
|
|
DWORD EndOfJobTimeAction;
|
|
|
|
} JOBOBJECT_END_OF_JOB_TIME_INFORMATION, PJOBOBJECT_END_OF_JOB_TIME_INFORMATION;
|
|
|
|
|
|
|
|
typedef struct _JOBOBJECT_ASSOCIATE_COMPLETION_PORT {
|
|
|
|
PVOID CompletionKey;
|
|
|
|
HANDLE CompletionPort;
|
|
|
|
} JOBOBJECT_ASSOCIATE_COMPLETION_PORT, *PJOBOBJECT_ASSOCIATE_COMPLETION_PORT;
|
|
|
|
|
|
|
|
#define JOB_OBJECT_MSG_END_OF_JOB_TIME 1
|
|
|
|
#define JOB_OBJECT_MSG_END_OF_PROCESS_TIME 2
|
|
|
|
#define JOB_OBJECT_MSG_ACTIVE_PROCESS_LIMIT 3
|
|
|
|
#define JOB_OBJECT_MSG_ACTIVE_PROCESS_ZERO 4
|
|
|
|
#define JOB_OBJECT_MSG_NEW_PROCESS 6
|
|
|
|
#define JOB_OBJECT_MSG_EXIT_PROCESS 7
|
|
|
|
#define JOB_OBJECT_MSG_ABNORMAL_EXIT_PROCESS 8
|
|
|
|
#define JOB_OBJECT_MSG_PROCESS_MEMORY_LIMIT 9
|
|
|
|
#define JOB_OBJECT_MSG_JOB_MEMORY_LIMIT 10
|
|
|
|
|
|
|
|
typedef struct JOBOBJECT_BASIC_AND_IO_ACCOUNTING_INFORMATION {
|
|
|
|
JOBOBJECT_BASIC_ACCOUNTING_INFORMATION BasicInfo;
|
|
|
|
IO_COUNTERS IoInfo;
|
|
|
|
} JOBOBJECT_BASIC_AND_IO_ACCOUNTING_INFORMATION, *PJOBOBJECT_BASIC_AND_IO_ACCOUNTING_INFORMATION;
|
|
|
|
|
|
|
|
typedef struct _JOBOBJECT_EXTENDED_LIMIT_INFORMATION {
|
|
|
|
JOBOBJECT_BASIC_LIMIT_INFORMATION BasicLimitInformation;
|
|
|
|
IO_COUNTERS IoInfo;
|
|
|
|
SIZE_T ProcessMemoryLimit;
|
|
|
|
SIZE_T JobMemoryLimit;
|
|
|
|
SIZE_T PeakProcessMemoryUsed;
|
|
|
|
SIZE_T PeakJobMemoryUsed;
|
|
|
|
} JOBOBJECT_EXTENDED_LIMIT_INFORMATION, *PJOBOBJECT_EXTENDED_LIMIT_INFORMATION;
|
|
|
|
|
|
|
|
#define JOB_OBJECT_LIMIT_WORKINGSET 0x00000001
|
|
|
|
#define JOB_OBJECT_LIMIT_PROCESS_TIME 0x00000002
|
|
|
|
#define JOB_OBJECT_LIMIT_JOB_TIME 0x00000004
|
|
|
|
#define JOB_OBJECT_LIMIT_ACTIVE_PROCESS 0x00000008
|
|
|
|
#define JOB_OBJECT_LIMIT_AFFINITY 0x00000010
|
|
|
|
#define JOB_OBJECT_LIMIT_PRIORITY_CLASS 0x00000020
|
|
|
|
#define JOB_OBJECT_LIMIT_PRESERVE_JOB_TIME 0x00000040
|
|
|
|
#define JOB_OBJECT_LIMIT_SCHEDULING_CLASS 0x00000080
|
|
|
|
#define JOB_OBJECT_LIMIT_PROCESS_MEMORY 0x00000100
|
|
|
|
#define JOB_OBJECT_LIMIT_JOB_MEMORY 0x00000200
|
|
|
|
#define JOB_OBJECT_LIMIT_DIE_ON_UNHANDLED_EXCEPTION 0x00000400
|
|
|
|
#define JOB_OBJECT_LIMIT_BREAKAWAY_OK 0x00000800
|
|
|
|
#define JOB_OBJECT_LIMIT_SILENT_BREAKAWAY_OK 0x00001000
|
|
|
|
#define JOB_OBJECT_LIMIT_KILL_ON_JOB_CLOSE 0x00002000
|
|
|
|
#define JOB_OBJECT_LIMIT_SUBSET_AFFINITY 0x00004000
|
|
|
|
|
2015-04-02 11:40:15 +02:00
|
|
|
#define JOB_OBJECT_LIMIT_VALID_FLAGS 0x0007ffff
|
|
|
|
#define JOB_OBJECT_BASIC_LIMIT_VALID_FLAGS 0x000000ff
|
|
|
|
#define JOB_OBJECT_EXTENDED_LIMIT_VALID_FLAGS 0x00007fff
|
|
|
|
|
2010-07-19 17:32:38 +02:00
|
|
|
typedef enum _LOGICAL_PROCESSOR_RELATIONSHIP
|
|
|
|
{
|
|
|
|
RelationProcessorCore = 0,
|
|
|
|
RelationNumaNode = 1,
|
|
|
|
RelationCache = 2,
|
|
|
|
RelationProcessorPackage = 3,
|
|
|
|
RelationGroup = 4,
|
|
|
|
RelationAll = 0xffff
|
|
|
|
} LOGICAL_PROCESSOR_RELATIONSHIP;
|
|
|
|
|
2018-06-21 07:29:45 +02:00
|
|
|
#define LTP_PC_SMT 0x1
|
|
|
|
|
2010-07-19 17:32:38 +02:00
|
|
|
typedef enum _PROCESSOR_CACHE_TYPE
|
|
|
|
{
|
|
|
|
CacheUnified,
|
|
|
|
CacheInstruction,
|
|
|
|
CacheData,
|
|
|
|
CacheTrace
|
|
|
|
} PROCESSOR_CACHE_TYPE;
|
|
|
|
|
|
|
|
typedef struct _PROCESSOR_GROUP_INFO
|
|
|
|
{
|
|
|
|
BYTE MaximumProcessorCount;
|
|
|
|
BYTE ActiveProcessorCount;
|
|
|
|
BYTE Reserved[38];
|
|
|
|
KAFFINITY ActiveProcessorMask;
|
|
|
|
} PROCESSOR_GROUP_INFO, *PPROCESSOR_GROUP_INFO;
|
|
|
|
|
|
|
|
typedef struct _CACHE_DESCRIPTOR
|
|
|
|
{
|
|
|
|
BYTE Level;
|
|
|
|
BYTE Associativity;
|
|
|
|
WORD LineSize;
|
|
|
|
DWORD Size;
|
|
|
|
PROCESSOR_CACHE_TYPE Type;
|
|
|
|
} CACHE_DESCRIPTOR, *PCACHE_DESCRIPTOR;
|
|
|
|
|
|
|
|
typedef struct _GROUP_AFFINITY
|
|
|
|
{
|
|
|
|
KAFFINITY Mask;
|
|
|
|
WORD Group;
|
|
|
|
WORD Reserved[3];
|
|
|
|
} GROUP_AFFINITY, *PGROUP_AFFINITY;
|
|
|
|
|
2012-05-17 19:28:31 +02:00
|
|
|
typedef struct _PROCESSOR_NUMBER
|
|
|
|
{
|
|
|
|
WORD Group;
|
|
|
|
BYTE Number;
|
|
|
|
BYTE Reserved;
|
|
|
|
} PROCESSOR_NUMBER, *PPROCESSOR_NUMBER;
|
|
|
|
|
2010-07-19 17:32:38 +02:00
|
|
|
typedef struct _PROCESSOR_RELATIONSHIP
|
|
|
|
{
|
|
|
|
BYTE Flags;
|
2015-10-22 16:39:56 +02:00
|
|
|
BYTE EfficiencyClass;
|
|
|
|
BYTE Reserved[20];
|
2010-07-19 17:32:38 +02:00
|
|
|
WORD GroupCount;
|
|
|
|
GROUP_AFFINITY GroupMask[ANYSIZE_ARRAY];
|
|
|
|
} PROCESSOR_RELATIONSHIP, *PPROCESSOR_RELATIONSHIP;
|
|
|
|
|
|
|
|
typedef struct _NUMA_NODE_RELATIONSHIP
|
|
|
|
{
|
|
|
|
DWORD NodeNumber;
|
|
|
|
BYTE Reserved[20];
|
|
|
|
GROUP_AFFINITY GroupMask;
|
|
|
|
} NUMA_NODE_RELATIONSHIP, *PNUMA_NODE_RELATIONSHIP;
|
|
|
|
|
|
|
|
typedef struct _CACHE_RELATIONSHIP
|
|
|
|
{
|
|
|
|
BYTE Level;
|
|
|
|
BYTE Associativity;
|
|
|
|
WORD LineSize;
|
2015-10-22 16:39:56 +02:00
|
|
|
DWORD CacheSize;
|
2010-07-19 17:32:38 +02:00
|
|
|
PROCESSOR_CACHE_TYPE Type;
|
|
|
|
BYTE Reserved[20];
|
|
|
|
GROUP_AFFINITY GroupMask;
|
|
|
|
} CACHE_RELATIONSHIP, *PCACHE_RELATIONSHIP;
|
|
|
|
|
|
|
|
typedef struct _GROUP_RELATIONSHIP
|
|
|
|
{
|
|
|
|
WORD MaximumGroupCount;
|
|
|
|
WORD ActiveGroupCount;
|
|
|
|
BYTE Reserved[20];
|
|
|
|
PROCESSOR_GROUP_INFO GroupInfo[ANYSIZE_ARRAY];
|
|
|
|
} GROUP_RELATIONSHIP, *PGROUP_RELATIONSHIP;
|
|
|
|
|
|
|
|
typedef struct _SYSTEM_LOGICAL_PROCESSOR_INFORMATION
|
|
|
|
{
|
|
|
|
ULONG_PTR ProcessorMask;
|
|
|
|
LOGICAL_PROCESSOR_RELATIONSHIP Relationship;
|
|
|
|
union
|
|
|
|
{
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
BYTE Flags;
|
|
|
|
} ProcessorCore;
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
DWORD NodeNumber;
|
|
|
|
} NumaNode;
|
|
|
|
CACHE_DESCRIPTOR Cache;
|
|
|
|
ULONGLONG Reserved[2];
|
|
|
|
} DUMMYUNIONNAME;
|
|
|
|
} SYSTEM_LOGICAL_PROCESSOR_INFORMATION, *PSYSTEM_LOGICAL_PROCESSOR_INFORMATION;
|
|
|
|
|
|
|
|
typedef struct _SYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX
|
|
|
|
{
|
|
|
|
LOGICAL_PROCESSOR_RELATIONSHIP Relationship;
|
|
|
|
DWORD Size;
|
|
|
|
union
|
|
|
|
{
|
|
|
|
PROCESSOR_RELATIONSHIP Processor;
|
|
|
|
NUMA_NODE_RELATIONSHIP NumaNode;
|
|
|
|
CACHE_RELATIONSHIP Cache;
|
|
|
|
GROUP_RELATIONSHIP Group;
|
|
|
|
} DUMMYUNIONNAME;
|
|
|
|
} SYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX, *PSYSTEM_LOGICAL_PROCESSOR_INFORMATION_EX;
|
|
|
|
|
2014-01-29 20:13:27 +01:00
|
|
|
/* Threadpool things */
|
|
|
|
typedef DWORD TP_VERSION,*PTP_VERSION;
|
|
|
|
|
|
|
|
typedef struct _TP_CALLBACK_INSTANCE TP_CALLBACK_INSTANCE,*PTP_CALLBACK_INSTANCE;
|
|
|
|
|
|
|
|
typedef VOID (CALLBACK *PTP_SIMPLE_CALLBACK)(PTP_CALLBACK_INSTANCE,PVOID);
|
|
|
|
|
|
|
|
typedef struct _TP_POOL TP_POOL,*PTP_POOL;
|
|
|
|
|
|
|
|
typedef enum _TP_CALLBACK_PRIORITY
|
|
|
|
{
|
|
|
|
TP_CALLBACK_PRIORITY_HIGH,
|
|
|
|
TP_CALLBACK_PRIORITY_NORMAL,
|
|
|
|
TP_CALLBACK_PRIORITY_LOW,
|
|
|
|
TP_CALLBACK_PRIORITY_INVALID,
|
|
|
|
TP_CALLBACK_PRIORITY_COUNT = TP_CALLBACK_PRIORITY_INVALID
|
|
|
|
} TP_CALLBACK_PRIORITY;
|
|
|
|
|
|
|
|
typedef struct _TP_POOL_STACK_INFORMATION
|
|
|
|
{
|
|
|
|
SIZE_T StackReserve;
|
|
|
|
SIZE_T StackCommit;
|
|
|
|
} TP_POOL_STACK_INFORMATION,*PTP_POOL_STACK_INFORMATION;
|
|
|
|
|
|
|
|
typedef struct _TP_CLEANUP_GROUP TP_CLEANUP_GROUP,*PTP_CLEANUP_GROUP;
|
|
|
|
|
|
|
|
typedef VOID (CALLBACK *PTP_CLEANUP_GROUP_CANCEL_CALLBACK)(PVOID,PVOID);
|
|
|
|
|
|
|
|
typedef struct _TP_CALLBACK_ENVIRON_V1
|
|
|
|
{
|
|
|
|
TP_VERSION Version;
|
|
|
|
PTP_POOL Pool;
|
|
|
|
PTP_CLEANUP_GROUP CleanupGroup;
|
|
|
|
PTP_CLEANUP_GROUP_CANCEL_CALLBACK CleanupGroupCancelCallback;
|
|
|
|
PVOID RaceDll;
|
|
|
|
struct _ACTIVATION_CONTEXT* ActivationContext;
|
|
|
|
PTP_SIMPLE_CALLBACK FinalizationCallback;
|
|
|
|
union
|
|
|
|
{
|
|
|
|
DWORD Flags;
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
DWORD LongFunction:1;
|
|
|
|
DWORD Persistent:1;
|
|
|
|
DWORD Private:30;
|
|
|
|
} s;
|
|
|
|
} u;
|
|
|
|
} TP_CALLBACK_ENVIRON_V1;
|
|
|
|
|
2016-03-31 04:52:14 +02:00
|
|
|
typedef struct _TP_CALLBACK_ENVIRON_V3
|
|
|
|
{
|
|
|
|
TP_VERSION Version;
|
|
|
|
PTP_POOL Pool;
|
|
|
|
PTP_CLEANUP_GROUP CleanupGroup;
|
|
|
|
PTP_CLEANUP_GROUP_CANCEL_CALLBACK CleanupGroupCancelCallback;
|
|
|
|
PVOID RaceDll;
|
|
|
|
struct _ACTIVATION_CONTEXT *ActivationContext;
|
|
|
|
PTP_SIMPLE_CALLBACK FinalizationCallback;
|
|
|
|
union
|
|
|
|
{
|
|
|
|
DWORD Flags;
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
DWORD LongFunction:1;
|
|
|
|
DWORD Persistent:1;
|
|
|
|
DWORD Private:30;
|
|
|
|
} s;
|
|
|
|
} u;
|
|
|
|
TP_CALLBACK_PRIORITY CallbackPriority;
|
|
|
|
DWORD Size;
|
|
|
|
} TP_CALLBACK_ENVIRON_V3;
|
|
|
|
|
2014-01-29 20:13:27 +01:00
|
|
|
typedef struct _TP_WORK TP_WORK, *PTP_WORK;
|
|
|
|
typedef struct _TP_TIMER TP_TIMER, *PTP_TIMER;
|
|
|
|
|
|
|
|
typedef DWORD TP_WAIT_RESULT;
|
|
|
|
typedef struct _TP_WAIT TP_WAIT, *PTP_WAIT;
|
|
|
|
|
|
|
|
typedef struct _TP_IO TP_IO, *PTP_IO;
|
|
|
|
|
|
|
|
typedef TP_CALLBACK_ENVIRON_V1 TP_CALLBACK_ENVIRON, *PTP_CALLBACK_ENVIRON;
|
|
|
|
|
|
|
|
typedef VOID (CALLBACK *PTP_WORK_CALLBACK)(PTP_CALLBACK_INSTANCE,PVOID,PTP_WORK);
|
|
|
|
typedef VOID (CALLBACK *PTP_TIMER_CALLBACK)(PTP_CALLBACK_INSTANCE,PVOID,PTP_TIMER);
|
|
|
|
typedef VOID (CALLBACK *PTP_WAIT_CALLBACK)(PTP_CALLBACK_INSTANCE,PVOID,PTP_WAIT,TP_WAIT_RESULT);
|
|
|
|
typedef VOID (CALLBACK *PTP_WIN32_IO_CALLBACK)(PTP_CALLBACK_INSTANCE,PVOID,PVOID,ULONG,ULONG_PTR,PTP_IO);
|
|
|
|
|
|
|
|
|
2009-06-25 23:36:46 +02:00
|
|
|
NTSYSAPI BOOLEAN NTAPI RtlGetProductInfo(DWORD,DWORD,DWORD,DWORD,PDWORD);
|
|
|
|
|
2018-03-05 04:59:53 +01:00
|
|
|
typedef enum _RTL_UMS_THREAD_INFO_CLASS
|
|
|
|
{
|
|
|
|
UmsThreadInvalidInfoClass,
|
|
|
|
UmsThreadUserContext,
|
|
|
|
UmsThreadPriority,
|
|
|
|
UmsThreadAffinity,
|
|
|
|
UmsThreadTeb,
|
|
|
|
UmsThreadIsSuspended,
|
|
|
|
UmsThreadIsTerminated,
|
|
|
|
UmsThreadMaxInfoClass
|
|
|
|
} RTL_UMS_THREAD_INFO_CLASS, *PRTL_UMS_THREAD_INFO_CLASS;
|
|
|
|
|
|
|
|
typedef enum _RTL_UMS_SCHEDULER_REASON
|
|
|
|
{
|
|
|
|
UmsSchedulerStartup,
|
|
|
|
UmsSchedulerThreadBlocked,
|
|
|
|
UmsSchedulerThreadYield,
|
|
|
|
} RTL_UMS_SCHEDULER_REASON, *PRTL_UMS_SCHEDULER_REASON;
|
|
|
|
|
|
|
|
typedef void (CALLBACK *PRTL_UMS_SCHEDULER_ENTRY_POINT)(RTL_UMS_SCHEDULER_REASON,ULONG_PTR,PVOID);
|
|
|
|
|
2018-08-15 20:30:59 +02:00
|
|
|
typedef enum _PROCESS_MITIGATION_POLICY
|
|
|
|
{
|
|
|
|
ProcessDEPPolicy,
|
|
|
|
ProcessASLRPolicy,
|
|
|
|
ProcessDynamicCodePolicy,
|
|
|
|
ProcessStrictHandleCheckPolicy,
|
|
|
|
ProcessSystemCallDisablePolicy,
|
|
|
|
ProcessMitigationOptionsMask,
|
|
|
|
ProcessExtensionPointDisablePolicy,
|
|
|
|
ProcessControlFlowGuardPolicy,
|
|
|
|
ProcessSignaturePolicy,
|
|
|
|
ProcessFontDisablePolicy,
|
|
|
|
ProcessImageLoadPolicy,
|
|
|
|
ProcessSystemCallFilterPolicy,
|
|
|
|
ProcessPayloadRestrictionPolicy,
|
|
|
|
ProcessChildProcessPolicy,
|
|
|
|
ProcessSideChannelIsolationPolicy,
|
|
|
|
MaxProcessMitigationPolicy
|
|
|
|
} PROCESS_MITIGATION_POLICY, *PPROCESS_MITIGATION_POLICY;
|
|
|
|
|
2007-02-09 12:22:34 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2004-11-19 18:59:41 +01:00
|
|
|
#endif /* _WINNT_ */
|