Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
f4cb3230
Commit
f4cb3230
authored
Jun 14, 2023
by
Rémi Bernon
Committed by
Alexandre Julliard
Jun 15, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server: Update the DF_WINE_CREATE_DESKTOP desktop flag on opening.
Wine-Bug:
https://bugs.winehq.org/show_bug.cgi?id=55047
parent
0a6b5c79
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
winstation.c
server/winstation.c
+6
-1
No files found.
server/winstation.c
View file @
f4cb3230
...
@@ -30,6 +30,7 @@
...
@@ -30,6 +30,7 @@
#include "winbase.h"
#include "winbase.h"
#include "winuser.h"
#include "winuser.h"
#include "winternl.h"
#include "winternl.h"
#include "ntuser.h"
#include "object.h"
#include "object.h"
#include "handle.h"
#include "handle.h"
...
@@ -240,7 +241,11 @@ static struct desktop *create_desktop( const struct unicode_str *name, unsigned
...
@@ -240,7 +241,11 @@ static struct desktop *create_desktop( const struct unicode_str *name, unsigned
list_add_tail
(
&
winstation
->
desktops
,
&
desktop
->
entry
);
list_add_tail
(
&
winstation
->
desktops
,
&
desktop
->
entry
);
list_init
(
&
desktop
->
hotkeys
);
list_init
(
&
desktop
->
hotkeys
);
}
}
else
clear_error
();
else
{
desktop
->
flags
|=
(
flags
&
DF_WINE_CREATE_DESKTOP
);
clear_error
();
}
}
}
return
desktop
;
return
desktop
;
}
}
...
...
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