mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2024-11-21 16:46:54 -08:00
Several minor style fixes.
This commit is contained in:
parent
6cc9038091
commit
677a246d22
2
debian/changelog
vendored
2
debian/changelog
vendored
@ -3,12 +3,12 @@ wine-compholio (1.7.31) UNRELEASED; urgency=low
|
||||
* Added patch to allow selecting specific audio device for PulseAudio backend.
|
||||
* Added patch with stub for NtSetLdtEntries/ZwSetLdtEntries.
|
||||
* Added patch to prevent processing message events for CoWaitForMultipleHandles when APC calls are queued.
|
||||
* Added patch with stub for KeSetSystemAffinityThread.
|
||||
* Removed patch for iphlpapi stub functions (accepted upstream).
|
||||
* Removed patches for FindFirstFileExW (accepted upstream).
|
||||
* Removed patches for TLB dependencies lookup in resources (accepted upstream).
|
||||
* Removed patches for ws2_32.inet_pton implementation (fixed upstream).
|
||||
* Removed patch to update properties when applying MSI transforms (fixed upstream).
|
||||
* Add patch with stub for KeSetSystemAffinityThread
|
||||
-- Sebastian Lackner <sebastian@fds-team.de> Mon, 03 Nov 2014 20:10:04 +0100
|
||||
|
||||
wine-compholio (1.7.30) unstable; urgency=low
|
||||
|
@ -568,7 +568,7 @@ kernel32-GetNumaProcessorNode.ok:
|
||||
# Patchset kernel32-GetSystemTimes
|
||||
# |
|
||||
# | Included patches:
|
||||
# | * Implement GetSystemTimes. [rev 2, by Louis Lenders / Erich E. Hoover]
|
||||
# | * Implement GetSystemTimes. [rev 3, by Louis Lenders / Erich E. Hoover]
|
||||
# |
|
||||
# | This patchset fixes the following Wine bugs:
|
||||
# | * [#19813] Support for GetSystemTimes
|
||||
@ -581,7 +581,7 @@ kernel32-GetSystemTimes.ok:
|
||||
$(call APPLY_FILE,kernel32-GetSystemTimes/0001-kernel32-Add-tests-for-GetSystemTimes.patch)
|
||||
$(call APPLY_FILE,kernel32-GetSystemTimes/0002-kernel32-Implement-GetSystemTimes.patch)
|
||||
@( \
|
||||
echo '+ { "kernel32-GetSystemTimes", "Louis Lenders / Erich E. Hoover", "Implement GetSystemTimes. [rev 2]" },'; \
|
||||
echo '+ { "kernel32-GetSystemTimes", "Louis Lenders / Erich E. Hoover", "Implement GetSystemTimes. [rev 3]" },'; \
|
||||
) > kernel32-GetSystemTimes.ok
|
||||
|
||||
# Patchset kernel32-GetVolumePathName
|
||||
@ -814,7 +814,7 @@ ntdll-FileDispositionInformation.ok:
|
||||
# Patchset ntdll-Fix_Alignment
|
||||
# |
|
||||
# | Included patches:
|
||||
# | * Move NtProtectVirtualMemory and NtCreateSection to separate pages in ntdll on x86. [by Michael Müller]
|
||||
# | * Move NtProtectVirtualMemory and NtCreateSection to separate pages in ntdll on x86. [rev 2, by Michael Müller]
|
||||
# |
|
||||
# | This patchset fixes the following Wine bugs:
|
||||
# | * [#33162] Ensure NtProtectVirtualMemory and NtCreateSection are on separate pages
|
||||
@ -826,7 +826,7 @@ ntdll-FileDispositionInformation.ok:
|
||||
ntdll-Fix_Alignment.ok:
|
||||
$(call APPLY_FILE,ntdll-Fix_Alignment/0001-ntdll-Move-NtProtectVirtualMemory-and-NtCreateSectio.patch)
|
||||
@( \
|
||||
echo '+ { "ntdll-Fix_Alignment", "Michael Müller", "Move NtProtectVirtualMemory and NtCreateSection to separate pages in ntdll on x86." },'; \
|
||||
echo '+ { "ntdll-Fix_Alignment", "Michael Müller", "Move NtProtectVirtualMemory and NtCreateSection to separate pages in ntdll on x86. [rev 2]" },'; \
|
||||
) > ntdll-Fix_Alignment.ok
|
||||
|
||||
# Patchset ntdll-Fix_Free
|
||||
|
@ -18,7 +18,7 @@ index 35fe144..c2a3675 100644
|
||||
- output( "\t.byte 0\n" ); /* MajorLinkerVersion */
|
||||
- output( "\t.byte 0\n" ); /* MinorLinkerVersion */
|
||||
+ output( "\t.byte 7\n" ); /* MajorLinkerVersion */
|
||||
+ output( "\t.byte 10\n" ); /* MinorLinkerVersion */
|
||||
+ output( "\t.byte 10\n" ); /* MinorLinkerVersion */
|
||||
output( "\t.long 0\n" ); /* SizeOfCode */
|
||||
output( "\t.long 0\n" ); /* SizeOfInitializedData */
|
||||
output( "\t.long 0\n" ); /* SizeOfUninitializedData */
|
||||
|
@ -28,7 +28,7 @@ index e755e8a..f6688d8 100644
|
||||
|
||||
+static const WCHAR drv_key_devicesW[] = {'S','o','f','t','w','a','r','e','\\',
|
||||
+ 'W','i','n','e','\\','D','r','i','v','e','r','s','\\',
|
||||
+ 'w','i','n','e','p','u','l','s','e','.','d','r','v','\\','D','e','v','i','c','e','s',0};
|
||||
+ 'w','i','n','e','p','u','l','s','e','.','d','r','v','\\','d','e','v','i','c','e','s',0};
|
||||
+static const WCHAR guidW[] = {'g','u','i','d',0};
|
||||
+
|
||||
static GUID pulse_render_guid =
|
||||
|
Loading…
Reference in New Issue
Block a user