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
6259aeaa
Commit
6259aeaa
authored
Jun 19, 2009
by
Vincent Povirk
Committed by
Alexandre Julliard
Jun 22, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11.drv: Link the windows JFIF format to the X image/jpeg format.
parent
e4663206
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
0 deletions
+4
-0
clipboard.c
dlls/winex11.drv/clipboard.c
+2
-0
x11drv.h
dlls/winex11.drv/x11drv.h
+1
-0
x11drv_main.c
dlls/winex11.drv/x11drv_main.c
+1
-0
No files found.
dlls/winex11.drv/clipboard.c
View file @
6259aeaa
...
...
@@ -293,6 +293,7 @@ static WINE_CLIPFORMAT ClipFormats[] =
/* Maps X properties to Windows formats */
static
const
WCHAR
wszRichTextFormat
[]
=
{
'R'
,
'i'
,
'c'
,
'h'
,
' '
,
'T'
,
'e'
,
'x'
,
't'
,
' '
,
'F'
,
'o'
,
'r'
,
'm'
,
'a'
,
't'
,
0
};
static
const
WCHAR
wszGIF
[]
=
{
'G'
,
'I'
,
'F'
,
0
};
static
const
WCHAR
wszJFIF
[]
=
{
'J'
,
'F'
,
'I'
,
'F'
,
0
};
static
const
WCHAR
wszPNG
[]
=
{
'P'
,
'N'
,
'G'
,
0
};
static
const
WCHAR
wszHTMLFormat
[]
=
{
'H'
,
'T'
,
'M'
,
'L'
,
' '
,
'F'
,
'o'
,
'r'
,
'm'
,
'a'
,
't'
,
0
};
static
const
struct
...
...
@@ -304,6 +305,7 @@ static const struct
{
wszRichTextFormat
,
XATOM_text_rtf
},
{
wszRichTextFormat
,
XATOM_text_richtext
},
{
wszGIF
,
XATOM_image_gif
},
{
wszJFIF
,
XATOM_image_jpeg
},
{
wszPNG
,
XATOM_image_png
},
{
wszHTMLFormat
,
XATOM_text_html
},
};
...
...
dlls/winex11.drv/x11drv.h
View file @
6259aeaa
...
...
@@ -635,6 +635,7 @@ enum x11drv_atoms
XATOM_XdndTypeList
,
XATOM_WCF_DIB
,
XATOM_image_gif
,
XATOM_image_jpeg
,
XATOM_image_png
,
XATOM_text_html
,
XATOM_text_plain
,
...
...
dlls/winex11.drv/x11drv_main.c
View file @
6259aeaa
...
...
@@ -172,6 +172,7 @@ static const char * const atom_names[NB_XATOMS - FIRST_XATOM] =
"XdndTypeList"
,
"WCF_DIB"
,
"image/gif"
,
"image/jpeg"
,
"image/png"
,
"text/html"
,
"text/plain"
,
...
...
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