mirror of
https://github.com/reactos/wine.git
synced 2024-11-29 14:40:56 +00:00
e658d82093
Sat Nov 29 12:35:26 1997 Alexandre Julliard <julliard@lrc.epfl.ch> * [if1632/builtin.c] Build a complete PE header for builtin Win32 modules. * [loader/pe_image.c] [loader/module.c] HMODULE32 now points to the loading address of the module. There is no longer a separate PE_MODULE structure. Fri Nov 28 11:21:47 1997 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de> * [ole/*][configure.in][Makefile.in][include/interfaces.h] [if1632/olesvr32.spec][if1632/olecli32.spec] New directory, moved OLE stuff there. new .spec files for olecli32,olesvr32, some stubs added. * [misc/shell.c] Added support for extracting icons from PE dlls. * [misc/shellord.c][if1632/shell32.spec] Added a huge heap of ordinal only exported shell functions (will work only in Win95). * [loader/task.c] Hack to make MakeProcInstance16 work in all cases (mplayer.exe). * [win32/string32.c][include/string32.h] Obsolete, removed. * [windows/keyboard.c] Added *RegisterHotkey. * [objects/font.c][objects/text.c] Added GetFontLanguageInfo, GetTextCharsetInfo. Wed Nov 26 18:10:40 1997 Uwe Bonnes <bon@elektron.ikp.physik.tu-darmstadt.de> * [misc/network.c] In WNetGetConnection16 return the Drive label and not the DOS-Cwd. Makes Wordview 6 start on a network connected machine. * [controls/status.c] Catch a Null pointer in SW_SetText. * [files/dos_fs.c] Add NT5 functions GetLongPathName32. * [files/file.c] Make GetTempFileName16 accept drive 0 (Current Drive) too. Handle more errors and be more verbose in FILE_SetDosError, fix an error in DeleteFile32W * [memory/virtual.c] Implement FlushViewOfFile. * [misc/crtdll] Implement _rotl and splitpath and add a stub for _abnormal_termination. * [misc/printdrv.c] Stub for EnumPrinters32A. * [win32/newfns] Add Stub for QueryPerformanceFrequency, change return value for QueryPerformanceCounter. Add stub for DeviceIoControl. Tue Nov 25 15:55:01 1997 Martin Boehme <boehme@informatik.mu-luebeck.de> * [controls/combo.c] [controls/edit.c] [windows/defwnd.c] [windows/winpos.c] [windows/win.c] Removed WIN_NO_REDRAW flag. Tue Nov 25 13:20:35 1997 Douglas Ridgway <ridgway@taiga.v-wave.com> * [graphics/x11drv/bitblt.c] Fixed memory leak in BITBLT_GetDstArea. Sun Nov 23 14:05:23 1997 Andreas Mohr <100.30936@germany.net> * [files/directory.c] Export windows system directory to environment. * [if1632/Makefile.in] [if1632/builtin.c] [if1632/w32skrnl.spec] [if1632/win32s16.spec] [misc/w32scomb.c] [misc/w32skrnl.c] Added Win32s DLLs W32SKRNL and WIN32S16. * [if1632/kernel32.spec] [loader/module.c] Added misc functions for Win32s. * [if1632/kernel.spec] [loader/task.c] Added DefineHandleTable(). * [scheduler/process.c] Fixed SetEnvironmentVariable32A() to avoid heap corruption. Sat Nov 22 14:11:42 1997 Kristian Nielsen <kristian.nielsen@risoe.dk> * [windows/painting.c] Fix leak in BeginPaint16() for CS_PARENTDC windows where the update region was not properly released. Thu Nov 20 03:55:29 1997 Gordon Chaffee <chaffee@CS.Berkeley.EDU> * [loader/pe_image.c] Implemented forwarded DLL functions. * [objects/dib.c] Added support for 16- and 32-bit mode DIBs. Support negative bitmap heights. * [win32/process.c] Added stub for CreateProcess32W. * [win32/security.c] [include/ntdll.h] Added stubs for LookupAccountSid32A/W. * [scheduler/process.c] Use the size specified in the PE header for the process heap. Mon Nov 17 00:53:35 1997 Len White <phreak@cgocable.net> * [msdos/int3d.c] New file. Stubs for int3d. Sun Nov 16 12:30:00 PST 1997 Jason Schonberg <schon@mti.sgi.com> * [include/aspi.h] Changed comment style from C++ to C.
164 lines
3.6 KiB
C
164 lines
3.6 KiB
C
#ifndef __WINE_NTDLL_H
|
|
#define __WINE_NTDLL_H
|
|
/* ntdll.h
|
|
*
|
|
* contains NT internal defines that don't show on the Win32 API level
|
|
*
|
|
* Copyright 1997 Marcus Meissner
|
|
*/
|
|
|
|
/* assumes windows.h already included */
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* Security Ids of NT */
|
|
|
|
typedef struct {
|
|
BYTE Value[6];
|
|
} SID_IDENTIFIER_AUTHORITY,*PSID_IDENTIFIER_AUTHORITY,*LPSID_IDENTIFIER_AUTHORITY;
|
|
|
|
typedef struct _SID {
|
|
BYTE Revision;
|
|
BYTE SubAuthorityCount;
|
|
SID_IDENTIFIER_AUTHORITY IdentifierAuthority;
|
|
DWORD SubAuthority[1]; /* more than one */
|
|
} SID,*PSID,*LPSID;
|
|
|
|
#define SID_REVISION (1) /* Current revision */
|
|
#define SID_MAX_SUB_AUTHORITIES (15) /* current max subauths */
|
|
#define SID_RECOMMENDED_SUB_AUTHORITIES (1) /* recommended subauths */
|
|
|
|
/* ACLs of NT */
|
|
|
|
#define ACL_REVISION 2
|
|
|
|
#define ACL_REVISION1 1
|
|
#define ACL_REVISION2 2
|
|
|
|
typedef struct _ACL {
|
|
BYTE AclRevision;
|
|
BYTE Sbz1;
|
|
WORD AclSize;
|
|
WORD AceCount;
|
|
WORD Sbz2;
|
|
} ACL,*LPACL;
|
|
|
|
/* ACEs, directly starting after an ACL */
|
|
typedef struct _ACE_HEADER {
|
|
BYTE AceType;
|
|
BYTE AceFlags;
|
|
WORD AceSize;
|
|
} ACE_HEADER,*LPACE_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
|
|
|
|
/* inherit AceFlags */
|
|
#define OBJECT_INHERIT_ACE 0x01
|
|
#define CONTAINER_INHERIT_ACE 0x02
|
|
#define NO_PROPAGATE_INHERIT_ACE 0x04
|
|
#define INHERIT_ONLY_ACE 0x08
|
|
#define VALID_INHERIT_FLAGS 0x0F
|
|
|
|
/* AceFlags mask for what events we (should) audit */
|
|
#define SUCCESSFUL_ACCESS_ACE_FLAG 0x40
|
|
#define FAILED_ACCESS_ACE_FLAG 0x80
|
|
|
|
/* different ACEs depending on AceType
|
|
* 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,*LPACCESS_ALLOWED_ACE;
|
|
|
|
typedef struct _ACCESS_DENIED_ACE {
|
|
ACE_HEADER Header;
|
|
DWORD Mask;
|
|
DWORD SidStart;
|
|
} ACCESS_DENIED_ACE,*LPACCESS_DENIED_ACE;
|
|
|
|
typedef struct _SYSTEM_AUDIT_ACE {
|
|
ACE_HEADER Header;
|
|
DWORD Mask;
|
|
DWORD SidStart;
|
|
} SYSTEM_AUDIT_ACE,*LPSYSTEM_AUDIT_ACE;
|
|
|
|
typedef struct _SYSTEM_ALARM_ACE {
|
|
ACE_HEADER Header;
|
|
DWORD Mask;
|
|
DWORD SidStart;
|
|
} SYSTEM_ALARM_ACE,*LPSYSTEM_ALARM_ACE;
|
|
|
|
#define SECURITY_DESCRIPTOR_REVISION 1
|
|
#define SECURITY_DESCRIPTOR_REVISION1 1
|
|
|
|
typedef WORD SECURITY_DESCRIPTOR_CONTROL;
|
|
|
|
#define SE_OWNER_DEFAULTED 0x0001
|
|
#define SE_GROUP_DEFAULTED 0x0002
|
|
#define SE_DACL_PRESENT 0x0004
|
|
#define SE_DACL_DEFAULTED 0x0008
|
|
#define SE_SACL_PRESENT 0x0010
|
|
#define SE_SACL_DEFAULTED 0x0020
|
|
#define SE_SELF_RELATIVE 0x8000
|
|
|
|
typedef struct {
|
|
BYTE Revision;
|
|
BYTE Sbz1;
|
|
SECURITY_DESCRIPTOR_CONTROL Control;
|
|
LPSID Owner;
|
|
LPSID Group;
|
|
LPACL Sacl;
|
|
LPACL Dacl;
|
|
} SECURITY_DESCRIPTOR,*PSECURITY_DESCRIPTOR,*LPSECURITY_DESCRIPTOR;
|
|
|
|
typedef enum tagSID_NAME_USE {
|
|
SidTypeUser = 1,
|
|
SidTypeGroup,
|
|
SidTypeDomain,
|
|
SidTypeAlias,
|
|
SidTypeWellKnownGroup,
|
|
SidTypeDeletedAccount,
|
|
SidTypeInvalid,
|
|
SidTypeUnknown
|
|
} SID_NAME_USE,*PSID_NAME_USE,*LPSID_NAME_USE;
|
|
|
|
/* NT lowlevel Strings (handled by Rtl* functions in NTDLL)
|
|
* If they are zero terminated, Length does not include the terminating 0.
|
|
*/
|
|
|
|
typedef struct _STRING {
|
|
UINT16 Length;
|
|
UINT16 MaximumLength;
|
|
LPSTR Buffer;
|
|
} STRING,*LPSTRING,ANSI_STRING,*LPANSI_STRING;
|
|
|
|
typedef struct _CSTRING {
|
|
UINT16 Length;
|
|
UINT16 MaximumLength;
|
|
LPCSTR Buffer;
|
|
} CSTRING,*LPCSTRING;
|
|
|
|
typedef struct _UNICODE_STRING {
|
|
UINT16 Length; /* bytes */
|
|
UINT16 MaximumLength; /* bytes */
|
|
LPWSTR Buffer;
|
|
} UNICODE_STRING,*LPUNICODE_STRING;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __WINE_NTDLL_H */
|