You've already forked wine-staging
mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2025-04-13 14:42:51 -07:00
Removed patches to use interlocked functions for library refcounts (accepted upstream).
This commit is contained in:
@@ -69,7 +69,7 @@ index 01cef2c..a20c3e8 100644
|
||||
*/
|
||||
static NTSTATUS FILE_AsyncReadService(void *user, PIO_STATUS_BLOCK iosb, NTSTATUS status, void **apc)
|
||||
{
|
||||
async_fileio_read *fileio = user;
|
||||
struct async_fileio_read *fileio = user;
|
||||
- int fd, needs_close, result;
|
||||
+ int fd, needs_close;
|
||||
+ enum server_fd_type type;
|
||||
|
@@ -58,7 +58,7 @@ index 8de4b98..e8a1066 100644
|
||||
@@ -933,7 +964,7 @@ NTSTATUS WINAPI NtReadFileScatter( HANDLE file, HANDLE event, PIO_APC_ROUTINE ap
|
||||
static NTSTATUS FILE_AsyncWriteService(void *user, IO_STATUS_BLOCK *iosb, NTSTATUS status, void **apc)
|
||||
{
|
||||
async_fileio_write *fileio = user;
|
||||
struct async_fileio_write *fileio = user;
|
||||
- int result, fd, needs_close;
|
||||
+ int fd, needs_close;
|
||||
enum server_fd_type type;
|
||||
|
Reference in New Issue
Block a user