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
d5c6f6ec
Commit
d5c6f6ec
authored
Dec 06, 2006
by
Jacek Caban
Committed by
Alexandre Julliard
Dec 07, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon: Added application/x-zip-compressed filter.
parent
3d767fcb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
1 deletion
+17
-1
misc.c
dlls/urlmon/tests/misc.c
+9
-1
urlmon_main.c
dlls/urlmon/urlmon_main.c
+8
-0
No files found.
dlls/urlmon/tests/misc.c
View file @
d5c6f6ec
...
...
@@ -339,6 +339,8 @@ static const WCHAR mimeImageXPng[] = {'i','m','a','g','e','/','x','-','p','n','g
static
const
WCHAR
mimeImageTiff
[]
=
{
'i'
,
'm'
,
'a'
,
'g'
,
'e'
,
'/'
,
't'
,
'i'
,
'f'
,
'f'
,
0
};
static
const
WCHAR
mimeVideoAvi
[]
=
{
'v'
,
'i'
,
'd'
,
'e'
,
'o'
,
'/'
,
'a'
,
'v'
,
'i'
,
0
};
static
const
WCHAR
mimeVideoMpeg
[]
=
{
'v'
,
'i'
,
'd'
,
'e'
,
'o'
,
'/'
,
'm'
,
'p'
,
'e'
,
'g'
,
0
};
static
const
WCHAR
mimeAppXZip
[]
=
{
'a'
,
'p'
,
'p'
,
'l'
,
'i'
,
'c'
,
'a'
,
't'
,
'i'
,
'o'
,
'n'
,
'/'
,
'x'
,
'-'
,
'z'
,
'i'
,
'p'
,
'-'
,
'c'
,
'o'
,
'm'
,
'p'
,
'r'
,
'e'
,
's'
,
's'
,
'e'
,
'd'
,
0
};
static
const
WCHAR
mimeAppXGzip
[]
=
{
'a'
,
'p'
,
'p'
,
'l'
,
'i'
,
'c'
,
'a'
,
't'
,
'i'
,
'o'
,
'n'
,
'/'
,
'x'
,
'-'
,
'g'
,
'z'
,
'i'
,
'p'
,
'-'
,
'c'
,
'o'
,
'm'
,
'p'
,
'r'
,
'e'
,
's'
,
's'
,
'e'
,
'd'
,
0
};
...
...
@@ -413,6 +415,9 @@ static BYTE data55[] = {0x1f,0x8b,'x'};
static
BYTE
data56
[]
=
{
0x1f
};
static
BYTE
data57
[]
=
{
0x1f
,
0x8b
,
'<'
,
'h'
,
't'
,
'm'
,
'l'
,
'>'
,
't'
,
'e'
,
's'
,
't'
,
0
};
static
BYTE
data58
[]
=
{
0x1f
,
0x8b
};
static
BYTE
data59
[]
=
{
0x50
,
0x4b
,
'x'
};
static
BYTE
data60
[]
=
{
0x50
,
0x4b
};
static
BYTE
data61
[]
=
{
0x50
,
0x4b
,
'<'
,
'h'
,
't'
,
'm'
,
'l'
,
'>'
,
0
};
static
const
struct
{
BYTE
*
data
;
...
...
@@ -476,7 +481,10 @@ static const struct {
{
data55
,
sizeof
(
data55
),
mimeAppXGzip
},
{
data56
,
sizeof
(
data56
),
mimeTextPlain
},
{
data57
,
sizeof
(
data57
),
mimeTextHtml
},
{
data58
,
sizeof
(
data58
),
mimeAppOctetStream
}
{
data58
,
sizeof
(
data58
),
mimeAppOctetStream
},
{
data59
,
sizeof
(
data59
),
mimeAppXZip
},
{
data60
,
sizeof
(
data60
),
mimeTextPlain
},
{
data61
,
sizeof
(
data61
),
mimeTextHtml
}
};
static
void
test_FindMimeFromData
(
void
)
...
...
dlls/urlmon/urlmon_main.c
View file @
d5c6f6ec
...
...
@@ -469,6 +469,11 @@ static BOOL video_mpeg_filter(const BYTE const *b, DWORD size)
&&
(
b
[
3
]
==
0xb3
||
b
[
3
]
==
0xba
);
}
static
BOOL
application_xzip_filter
(
const
BYTE
const
*
b
,
DWORD
size
)
{
return
size
>
2
&&
b
[
0
]
==
0x50
&&
b
[
1
]
==
0x4b
;
}
static
BOOL
application_xgzip_filter
(
const
BYTE
const
*
b
,
DWORD
size
)
{
return
size
>
2
&&
b
[
0
]
==
0x1f
&&
b
[
1
]
==
0x8b
;
...
...
@@ -534,6 +539,8 @@ HRESULT WINAPI FindMimeFromData(LPBC pBC, LPCWSTR pwzUrl, LPVOID pBuffer,
static
const
WCHAR
wszImageBmp
[]
=
{
'i'
,
'm'
,
'a'
,
'g'
,
'e'
,
'/'
,
'b'
,
'm'
,
'p'
,
0
};
static
const
WCHAR
wszVideoAvi
[]
=
{
'v'
,
'i'
,
'd'
,
'e'
,
'o'
,
'/'
,
'a'
,
'v'
,
'i'
,
0
};
static
const
WCHAR
wszVideoMpeg
[]
=
{
'v'
,
'i'
,
'd'
,
'e'
,
'o'
,
'/'
,
'm'
,
'p'
,
'e'
,
'g'
,
0
};
static
const
WCHAR
wszAppXZip
[]
=
{
'a'
,
'p'
,
'p'
,
'l'
,
'i'
,
'c'
,
'a'
,
't'
,
'i'
,
'o'
,
'n'
,
'/'
,
'x'
,
'-'
,
'z'
,
'i'
,
'p'
,
'-'
,
'c'
,
'o'
,
'm'
,
'p'
,
'r'
,
'e'
,
's'
,
's'
,
'e'
,
'd'
,
0
};
static
const
WCHAR
wszAppXGzip
[]
=
{
'a'
,
'p'
,
'p'
,
'l'
,
'i'
,
'c'
,
'a'
,
't'
,
'i'
,
'o'
,
'n'
,
'/'
,
'x'
,
'-'
,
'g'
,
'z'
,
'i'
,
'p'
,
'-'
,
'c'
,
'o'
,
'm'
,
'p'
,
'r'
,
'e'
,
's'
,
's'
,
'e'
,
'd'
,
0
};
static
const
WCHAR
wszTextPlain
[]
=
{
't'
,
'e'
,
'x'
,
't'
,
'/'
,
'p'
,
'l'
,
'a'
,
'i'
,
'n'
,
'\0'
};
...
...
@@ -552,6 +559,7 @@ HRESULT WINAPI FindMimeFromData(LPBC pBC, LPCWSTR pwzUrl, LPVOID pBuffer,
{
wszImageBmp
,
image_bmp_filter
},
{
wszVideoAvi
,
video_avi_filter
},
{
wszVideoMpeg
,
video_mpeg_filter
},
{
wszAppXZip
,
application_xzip_filter
},
{
wszAppXGzip
,
application_xgzip_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