Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
a822ef3f
Commit
a822ef3f
authored
Sep 04, 2020
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
commit 14.1.4 upon wine-1.7.25
parent
cf365fe5
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
40 additions
and
5 deletions
+40
-5
advapi32.spec
dlls/advapi32/advapi32.spec
+1
-1
security.c
dlls/advapi32/security.c
+9
-0
api-ms-win-core-kernel32-legacy-l1-1-0.spec
...legacy-l1-1-0/api-ms-win-core-kernel32-legacy-l1-1-0.spec
+1
-1
api-ms-win-security-base-l1-1-0.spec
...security-base-l1-1-0/api-ms-win-security-base-l1-1-0.spec
+1
-1
api-ms-win-security-base-l1-2-0.spec
...security-base-l1-2-0/api-ms-win-security-base-l1-2-0.spec
+1
-1
file.c
dlls/kernel32/file.c
+10
-0
kernel32.spec
dlls/kernel32/kernel32.spec
+1
-0
ntdll.spec
dlls/ntdll/ntdll.spec
+1
-1
sec.c
dlls/ntdll/sec.c
+10
-0
schannel_gnutls.c
dlls/secur32/schannel_gnutls.c
+1
-0
surface.c
dlls/wined3d/surface.c
+3
-0
winbase.h
include/winbase.h
+1
-0
No files found.
dlls/advapi32/advapi32.spec
View file @
a822ef3f
...
...
@@ -375,7 +375,7 @@
@ stub I_ScSetServiceBitsA
# @ stub I_ScSetServiceBitsW
# @ stub IdentifyCodeAuthzLevelW
# @ stub ImpersonateAnonymousToken
@ stdcall ImpersonateAnonymousToken(long)
@ stdcall ImpersonateLoggedOnUser(long)
@ stdcall ImpersonateNamedPipeClient(long)
@ stdcall ImpersonateSelf(long)
...
...
dlls/advapi32/security.c
View file @
a822ef3f
...
...
@@ -2541,6 +2541,15 @@ BOOL WINAPI ImpersonateLoggedOnUser(HANDLE hToken)
}
/******************************************************************************
* ImpersonateAnonymousToken [ADVAPI32.@]
*/
BOOL
WINAPI
ImpersonateAnonymousToken
(
HANDLE
thread
)
{
TRACE
(
"(%p)
\n
"
,
thread
);
return
set_ntstatus
(
NtImpersonateAnonymousToken
(
thread
)
);
}
/******************************************************************************
* AccessCheck [ADVAPI32.@]
*/
BOOL
WINAPI
...
...
dlls/api-ms-win-core-kernel32-legacy-l1-1-0/api-ms-win-core-kernel32-legacy-l1-1-0.spec
View file @
a822ef3f
...
...
@@ -45,7 +45,7 @@
@ stub RaiseFailFastException
@ stdcall RegisterWaitForSingleObject(ptr long ptr ptr long long) kernel32.RegisterWaitForSingleObject
@ stdcall SetConsoleTitleA(str) kernel32.SetConsoleTitleA
@ st
ub
SetFileCompletionNotificationModes
@ st
dcall SetFileCompletionNotificationModes(long long) kernel32.
SetFileCompletionNotificationModes
@ stdcall SetHandleCount(long) kernel32.SetHandleCount
@ stdcall SetMailslotInfo(long long) kernel32.SetMailslotInfo
@ stdcall SetVolumeLabelW(wstr wstr) kernel32.SetVolumeLabelW
...
...
dlls/api-ms-win-security-base-l1-1-0/api-ms-win-security-base-l1-1-0.spec
View file @
a822ef3f
...
...
@@ -58,7 +58,7 @@
@ stdcall GetSidSubAuthorityCount(ptr) advapi32.GetSidSubAuthorityCount
@ stdcall GetTokenInformation(long long ptr long ptr) advapi32.GetTokenInformation
@ stub GetWindowsAccountDomainSid
@ st
ub
ImpersonateAnonymousToken
@ st
dcall ImpersonateAnonymousToken(long) advapi32.
ImpersonateAnonymousToken
@ stdcall ImpersonateLoggedOnUser(long) advapi32.ImpersonateLoggedOnUser
@ stdcall ImpersonateSelf(long) advapi32.ImpersonateSelf
@ stdcall InitializeAcl(ptr long long) advapi32.InitializeAcl
...
...
dlls/api-ms-win-security-base-l1-2-0/api-ms-win-security-base-l1-2-0.spec
View file @
a822ef3f
...
...
@@ -64,7 +64,7 @@
@ stdcall GetSidSubAuthorityCount(ptr) advapi32.GetSidSubAuthorityCount
@ stdcall GetTokenInformation(long long ptr long ptr) advapi32.GetTokenInformation
@ stub GetWindowsAccountDomainSid
@ st
ub
ImpersonateAnonymousToken
@ st
dcall ImpersonateAnonymousToken(long) advapi32.
ImpersonateAnonymousToken
@ stdcall ImpersonateLoggedOnUser(long) advapi32.ImpersonateLoggedOnUser
@ stdcall ImpersonateSelf(long) advapi32.ImpersonateSelf
@ stdcall InitializeAcl(ptr long long) advapi32.InitializeAcl
...
...
dlls/kernel32/file.c
View file @
a822ef3f
...
...
@@ -1030,6 +1030,16 @@ BOOL WINAPI SetEndOfFile( HANDLE hFile )
return
FALSE
;
}
/**************************************************************************
* SetFileCompletionNotificationModes (KERNEL32.@)
*/
BOOL
WINAPI
SetFileCompletionNotificationModes
(
HANDLE
handle
,
UCHAR
flags
)
{
FIXME
(
"%p %x - stub
\n
"
,
handle
,
flags
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
BOOL
WINAPI
SetFileInformationByHandle
(
HANDLE
file
,
FILE_INFO_BY_HANDLE_CLASS
class
,
VOID
*
info
,
DWORD
size
)
{
FIXME
(
"%p %u %p %u - stub
\n
"
,
file
,
class
,
info
,
size
);
...
...
dlls/kernel32/kernel32.spec
View file @
a822ef3f
...
...
@@ -1136,6 +1136,7 @@
@ stdcall SetFileApisToOEM()
@ stdcall SetFileAttributesA(str long)
@ stdcall SetFileAttributesW(wstr long)
@ stdcall SetFileCompletionNotificationModes(long long)
@ stdcall SetFileInformationByHandle(long long ptr long)
@ stdcall SetFilePointer(long long ptr long)
@ stdcall SetFilePointerEx(long int64 ptr long)
...
...
dlls/ntdll/ntdll.spec
View file @
a822ef3f
...
...
@@ -182,7 +182,7 @@
@ stub NtGetPlugPlayEvent
@ stdcall NtGetTickCount()
@ stdcall NtGetWriteWatch(long long ptr long ptr ptr ptr)
@ st
ub NtImpersonateAnonymousToken
@ st
dcall NtImpersonateAnonymousToken(long)
@ stub NtImpersonateClientOfPort
@ stub NtImpersonateThread
@ stub NtInitializeRegistry
...
...
dlls/ntdll/sec.c
View file @
a822ef3f
...
...
@@ -1521,6 +1521,16 @@ RtlImpersonateSelf(SECURITY_IMPERSONATION_LEVEL ImpersonationLevel)
}
/******************************************************************************
* NtImpersonateAnonymousToken [NTDLL.@]
*/
NTSTATUS
WINAPI
NtImpersonateAnonymousToken
(
HANDLE
thread
)
{
FIXME
(
"(%p): stub
\n
"
,
thread
);
return
STATUS_NOT_IMPLEMENTED
;
}
/******************************************************************************
* NtAccessCheck [NTDLL.@]
* ZwAccessCheck [NTDLL.@]
*
...
...
dlls/secur32/schannel_gnutls.c
View file @
a822ef3f
...
...
@@ -479,6 +479,7 @@ BOOL schan_imp_init(void)
if
(
1
)
{
/* CROSSOVER HACK - bug 10151 */
const
char
*
libgnutls_name_candidates
[]
=
{
SONAME_LIBGNUTLS
,
"libgnutls.so.30"
,
"libgnutls.so.28"
,
"libgnutls-deb0.so.28"
,
"libgnutls.so.26"
,
...
...
dlls/wined3d/surface.c
View file @
a822ef3f
...
...
@@ -5320,7 +5320,10 @@ release:
if
(
dst_surface
->
container
->
swapchain
&&
dst_surface
->
container
==
dst_surface
->
container
->
swapchain
->
front_buffer
)
{
dst_surface
->
lockedRect
=
*
dst_rect
;
dst_surface
->
surface_ops
->
surface_frontbuffer_updated
(
dst_surface
);
}
}
if
(
src_surface
&&
src_surface
!=
dst_surface
&&
src_data
)
wined3d_resource_release_map_ptr
(
&
src_surface
->
resource
,
context
);
...
...
include/winbase.h
View file @
a822ef3f
...
...
@@ -2328,6 +2328,7 @@ WINBASEAPI VOID WINAPI SetFileApisToOEM(void);
WINBASEAPI
BOOL
WINAPI
SetFileAttributesA
(
LPCSTR
,
DWORD
);
WINBASEAPI
BOOL
WINAPI
SetFileAttributesW
(
LPCWSTR
,
DWORD
);
#define SetFileAttributes WINELIB_NAME_AW(SetFileAttributes)
WINBASEAPI
BOOL
WINAPI
SetFileCompletionNotificationModes
(
HANDLE
,
UCHAR
);
WINBASEAPI
DWORD
WINAPI
SetFilePointer
(
HANDLE
,
LONG
,
LPLONG
,
DWORD
);
WINBASEAPI
BOOL
WINAPI
SetFilePointerEx
(
HANDLE
,
LARGE_INTEGER
,
LARGE_INTEGER
*
,
DWORD
);
WINADVAPI
BOOL
WINAPI
SetFileSecurityA
(
LPCSTR
,
SECURITY_INFORMATION
,
PSECURITY_DESCRIPTOR
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment