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
682944ad
Commit
682944ad
authored
Jul 06, 2006
by
Jacek Caban
Committed by
Alexandre Julliard
Jul 07, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon: Added image/bmp filter.
parent
32405d63
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
2 deletions
+24
-2
misc.c
dlls/urlmon/tests/misc.c
+14
-2
urlmon_main.c
dlls/urlmon/urlmon_main.c
+10
-0
No files found.
dlls/urlmon/tests/misc.c
View file @
682944ad
...
...
@@ -332,6 +332,7 @@ static const WCHAR mimeAppOctetStream[] = {'a','p','p','l','i','c','a','t','i','
'o'
,
'c'
,
't'
,
'e'
,
't'
,
'-'
,
's'
,
't'
,
'r'
,
'e'
,
'a'
,
'm'
,
0
};
static
const
WCHAR
mimeImagePjpeg
[]
=
{
'i'
,
'm'
,
'a'
,
'g'
,
'e'
,
'/'
,
'p'
,
'j'
,
'p'
,
'e'
,
'g'
,
0
};
static
const
WCHAR
mimeImageGif
[]
=
{
'i'
,
'm'
,
'a'
,
'g'
,
'e'
,
'/'
,
'g'
,
'i'
,
'f'
,
0
};
static
const
WCHAR
mimeImageBmp
[]
=
{
'i'
,
'm'
,
'a'
,
'g'
,
'e'
,
'/'
,
'b'
,
'm'
,
'p'
,
0
};
static
const
struct
{
LPCWSTR
url
;
...
...
@@ -373,7 +374,12 @@ static BYTE data24[] = {'g','i','f','8','7','a'};
static
BYTE
data25
[]
=
{
'G'
,
'i'
,
'F'
,
'8'
,
'7'
,
'A'
};
static
BYTE
data26
[]
=
{
'G'
,
'i'
,
'F'
,
'8'
,
'7'
,
'a'
,
'<'
,
'h'
,
't'
,
'm'
,
'l'
,
'>'
};
static
BYTE
data27
[]
=
{
0x30
,
'G'
,
'i'
,
'F'
,
'8'
,
'7'
,
'A'
};
static
BYTE
data28
[]
=
{
0x42
,
0x4d
,
0x6e
,
0x42
,
0x1c
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x36
,
0x00
,
0x00
,
0x00
};
static
BYTE
data29
[]
=
{
0x42
,
0x4d
,
'x'
,
'x'
,
'x'
,
'x'
,
0x00
,
0x00
,
0x00
,
0x00
,
'x'
,
'x'
,
'x'
,
'x'
};
static
BYTE
data30
[]
=
{
0x42
,
0x4d
,
'x'
,
'x'
,
'x'
,
'x'
,
0x00
,
0x01
,
0x00
,
0x00
,
'x'
,
'x'
,
'x'
,
'x'
};
static
BYTE
data31
[]
=
{
0x42
,
0x4d
,
'x'
,
'x'
,
'x'
,
'x'
,
0x00
,
0x00
,
0x00
,
0x00
,
'<'
,
'h'
,
't'
,
'm'
,
'l'
,
'>'
};
static
BYTE
data32
[]
=
{
0x42
,
0x4d
,
'x'
,
'x'
,
'x'
,
'x'
,
0x00
,
0x00
,
0x00
,
0x00
,
'x'
,
'x'
,
'x'
};
static
BYTE
data33
[]
=
{
0x00
,
0x42
,
0x4d
,
'x'
,
'x'
,
'x'
,
'x'
,
0x00
,
0x00
,
0x00
,
0x00
,
'x'
,
'x'
,
'x'
};
static
const
struct
{
BYTE
*
data
;
...
...
@@ -406,7 +412,13 @@ static const struct {
{
data24
,
sizeof
(
data24
),
mimeImageGif
},
{
data25
,
sizeof
(
data25
),
mimeImageGif
},
{
data26
,
sizeof
(
data26
),
mimeTextHtml
},
{
data27
,
sizeof
(
data27
),
mimeTextPlain
}
{
data27
,
sizeof
(
data27
),
mimeTextPlain
},
{
data28
,
sizeof
(
data28
),
mimeImageBmp
},
{
data29
,
sizeof
(
data29
),
mimeImageBmp
},
{
data30
,
sizeof
(
data30
),
mimeAppOctetStream
},
{
data31
,
sizeof
(
data31
),
mimeTextHtml
},
{
data32
,
sizeof
(
data32
),
mimeAppOctetStream
},
{
data33
,
sizeof
(
data32
),
mimeAppOctetStream
}
};
static
void
test_FindMimeFromData
(
void
)
...
...
dlls/urlmon/urlmon_main.c
View file @
682944ad
...
...
@@ -434,6 +434,14 @@ static BOOL image_pjpeg_filter(LPVOID buf, DWORD size)
return
size
>
2
&&
*
(
BYTE
*
)
buf
==
0xff
&&
*
((
BYTE
*
)
buf
+
1
)
==
0xd8
;
}
static
BOOL
image_bmp_filter
(
LPVOID
buf
,
DWORD
size
)
{
return
size
>=
14
&&
*
(
BYTE
*
)
buf
==
0x42
&&
*
((
BYTE
*
)
buf
+
1
)
==
0x4d
&&
*
(
DWORD
*
)((
BYTE
*
)
buf
+
6
)
==
0
;
}
static
BOOL
text_plain_filter
(
LPVOID
buf
,
DWORD
size
)
{
UCHAR
*
ptr
;
...
...
@@ -488,6 +496,7 @@ HRESULT WINAPI FindMimeFromData(LPBC pBC, LPCWSTR pwzUrl, LPVOID pBuffer,
static
const
WCHAR
wszTextHtml
[]
=
{
't'
,
'e'
,
'x'
,
't'
,
'/'
,
'h'
,
't'
,
'm'
,
'l'
,
0
};
static
const
WCHAR
wszImageGif
[]
=
{
'i'
,
'm'
,
'a'
,
'g'
,
'e'
,
'/'
,
'g'
,
'i'
,
'f'
,
0
};
static
const
WCHAR
wszImagePjpeg
[]
=
{
'i'
,
'm'
,
'a'
,
'g'
,
'e'
,
'/'
,
'p'
,
'j'
,
'p'
,
'e'
,
'g'
,
0
};
static
const
WCHAR
wszImageBmp
[]
=
{
'i'
,
'm'
,
'a'
,
'g'
,
'e'
,
'/'
,
'b'
,
'm'
,
'p'
,
0
};
static
const
WCHAR
wszTextPlain
[]
=
{
't'
,
'e'
,
'x'
,
't'
,
'/'
,
'p'
,
'l'
,
'a'
,
'i'
,
'n'
,
'\0'
};
static
const
WCHAR
wszAppOctetStream
[]
=
{
'a'
,
'p'
,
'p'
,
'l'
,
'i'
,
'c'
,
'a'
,
't'
,
'i'
,
'o'
,
'n'
,
'/'
,
'o'
,
'c'
,
't'
,
'e'
,
't'
,
'-'
,
's'
,
't'
,
'r'
,
'e'
,
'a'
,
'm'
,
'\0'
};
...
...
@@ -499,6 +508,7 @@ HRESULT WINAPI FindMimeFromData(LPBC pBC, LPCWSTR pwzUrl, LPVOID pBuffer,
{
wszTextHtml
,
text_html_filter
},
{
wszImageGif
,
image_gif_filter
},
{
wszImagePjpeg
,
image_pjpeg_filter
},
{
wszImageBmp
,
image_bmp_filter
},
{
wszTextPlain
,
text_plain_filter
},
{
wszAppOctetStream
,
application_octet_stream_filter
}
};
...
...
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