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
1bacc584
Commit
1bacc584
authored
Dec 04, 2003
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Portability fixes.
parent
0e04023b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
clipboard.c
dlls/x11drv/clipboard.c
+1
-0
xdnd.c
dlls/x11drv/xdnd.c
+2
-1
No files found.
dlls/x11drv/clipboard.c
View file @
1bacc584
...
@@ -62,6 +62,7 @@
...
@@ -62,6 +62,7 @@
*/
*/
#include "config.h"
#include "config.h"
#include "wine/port.h"
#include <string.h>
#include <string.h>
#include <stdarg.h>
#include <stdarg.h>
...
...
dlls/x11drv/xdnd.c
View file @
1bacc584
...
@@ -19,6 +19,7 @@
...
@@ -19,6 +19,7 @@
*/
*/
#include "config.h"
#include "config.h"
#include "wine/port.h"
#include <string.h>
#include <string.h>
#ifdef HAVE_UNISTD_H
#ifdef HAVE_UNISTD_H
...
@@ -195,7 +196,7 @@ int X11DRV_XDND_Event(HWND hWnd, XClientMessageEvent *event)
...
@@ -195,7 +196,7 @@ int X11DRV_XDND_Event(HWND hWnd, XClientMessageEvent *event)
X11DRV_XDND_FreeDragDropOp
();
X11DRV_XDND_FreeDragDropOp
();
/* Tell the target we are finished. */
/* Tell the target we are finished. */
bzero
(
&
e
,
sizeof
(
e
));
memset
(
&
e
,
0
,
sizeof
(
e
));
e
.
type
=
ClientMessage
;
e
.
type
=
ClientMessage
;
e
.
display
=
event
->
display
;
e
.
display
=
event
->
display
;
e
.
window
=
event
->
data
.
l
[
0
];
e
.
window
=
event
->
data
.
l
[
0
];
...
...
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