Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Zlib
提交
dbe0bed7
T
Third Party Zlib
项目概览
OpenHarmony
/
Third Party Zlib
1 年多 前同步成功
通知
16
Star
112
Fork
2
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
Third Party Zlib
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
dbe0bed7
编写于
3月 16, 2012
作者:
M
Mark Adler
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add gzopen_w() in Windows for wide character path names.
上级
a3881cc7
变更
9
隐藏空白更改
内联
并排
Showing
9 changed file
with
55 addition
and
19 deletion
+55
-19
contrib/vstudio/vc10/zlibvc.def
contrib/vstudio/vc10/zlibvc.def
+3
-0
contrib/vstudio/vc9/zlibvc.def
contrib/vstudio/vc9/zlibvc.def
+4
-1
gzguts.h
gzguts.h
+1
-1
gzlib.c
gzlib.c
+32
-16
win32/zlib.def
win32/zlib.def
+2
-1
zconf.h
zconf.h
+3
-0
zconf.h.cmakein
zconf.h.cmakein
+3
-0
zconf.h.in
zconf.h.in
+3
-0
zlib.h
zlib.h
+4
-0
未找到文件。
contrib/vstudio/vc10/zlibvc.def
浏览文件 @
dbe0bed7
...
...
@@ -135,3 +135,6 @@ EXPORTS
gzflags @162
inflateResetKeep @163
deflateResetKeep @164
; zlib1 v1.2.7 added:
gzopen_w @165
contrib/vstudio/vc9/zlibvc.def
浏览文件 @
dbe0bed7
...
...
@@ -134,4 +134,7 @@ EXPORTS
gzgetc_ @161
gzflags @162
inflateResetKeep @163
deflateResetKeep @164
deflateResetKeep @164
; zlib1 v1.2.7 added:
gzopen_w @165
gzguts.h
浏览文件 @
dbe0bed7
...
...
@@ -27,7 +27,7 @@
#endif
#include <fcntl.h>
#if defined(__TURBOC__) || defined(_MSC_VER)
#if defined(__TURBOC__) || defined(_MSC_VER)
|| defined(_WIN32)
# include <io.h>
#endif
...
...
gzlib.c
浏览文件 @
dbe0bed7
...
...
@@ -17,7 +17,7 @@
/* Local functions */
local
void
gz_reset
OF
((
gz_statep
));
local
gzFile
gz_open
OF
((
const
char
*
,
int
,
const
char
*
));
local
gzFile
gz_open
OF
((
const
void
*
,
int
,
const
char
*
));
#if defined UNDER_CE
...
...
@@ -89,11 +89,12 @@ local void gz_reset(state)
/* Open a gzip file either by name or file descriptor. */
local
gzFile
gz_open
(
path
,
fd
,
mode
)
const
char
*
path
;
const
void
*
path
;
int
fd
;
const
char
*
mode
;
{
gz_statep
state
;
int
oflag
;
#ifdef O_CLOEXEC
int
cloexec
=
0
;
#endif
...
...
@@ -191,28 +192,33 @@ local gzFile gz_open(path, fd, mode)
}
strcpy
(
state
->
path
,
path
);
/* open the file with the appropriate mode (or just use fd) */
state
->
fd
=
fd
!=
-
1
?
fd
:
open
(
path
,
/* compute the flags for open() */
oflag
=
#ifdef O_LARGEFILE
O_LARGEFILE
|
O_LARGEFILE
|
#endif
#ifdef O_BINARY
O_BINARY
|
O_BINARY
|
#endif
#ifdef O_CLOEXEC
(
cloexec
?
O_CLOEXEC
:
0
)
|
(
cloexec
?
O_CLOEXEC
:
0
)
|
#endif
(
state
->
mode
==
GZ_READ
?
O_RDONLY
:
(
O_WRONLY
|
O_CREAT
|
(
state
->
mode
==
GZ_READ
?
O_RDONLY
:
(
O_WRONLY
|
O_CREAT
|
#ifdef O_EXCL
(
exclusive
?
O_EXCL
:
0
)
|
(
exclusive
?
O_EXCL
:
0
)
|
#endif
(
state
->
mode
==
GZ_WRITE
?
O_TRUNC
:
O_APPEND
)));
/* open the file with the appropriate flags (or just use fd) */
state
->
fd
=
fd
>
-
1
?
fd
:
(
#ifdef _WIN32
fd
==
-
2
?
_wopen
(
path
,
oflag
,
0666
)
:
#endif
(
state
->
mode
==
GZ_WRITE
?
O_TRUNC
:
O_APPEND
))),
0666
);
open
(
path
,
oflag
,
0666
));
if
(
state
->
fd
==
-
1
)
{
free
(
state
->
path
);
free
(
state
);
...
...
@@ -266,6 +272,16 @@ gzFile ZEXPORT gzdopen(fd, mode)
return
gz
;
}
/* -- see zlib.h -- */
#ifdef _WIN32
gzFile
ZEXPORT
gzopen_w
(
path
,
mode
)
const
w_char
*
path
;
const
char
*
mode
;
{
return
gz_open
(
path
,
-
2
,
mode
);
}
#endif
/* -- see zlib.h -- */
int
ZEXPORT
gzbuffer
(
file
,
size
)
gzFile
file
;
...
...
win32/zlib.def
浏览文件 @
dbe0bed7
...
...
@@ -74,10 +74,11 @@ EXPORTS
inflateInit_
inflateInit2_
inflateBackInit_
gzgetc_
zError
inflateSyncPoint
get_crc_table
inflateUndermine
inflateResetKeep
deflateResetKeep
gz
getc_
gz
open_w
zconf.h
浏览文件 @
dbe0bed7
...
...
@@ -73,6 +73,9 @@
# define gzoffset64 z_gzoffset64
# define gzopen z_gzopen
# define gzopen64 z_gzopen64
# ifdef _WIN32
# define gzopen_w z_gzopen_w
# endif
# define gzprintf z_gzprintf
# define gzputc z_gzputc
# define gzputs z_gzputs
...
...
zconf.h.cmakein
浏览文件 @
dbe0bed7
...
...
@@ -75,6 +75,9 @@
# define gzoffset64 z_gzoffset64
# define gzopen z_gzopen
# define gzopen64 z_gzopen64
# ifdef _WIN32
# define gzopen_w z_gzopen_w
# endif
# define gzprintf z_gzprintf
# define gzputc z_gzputc
# define gzputs z_gzputs
...
...
zconf.h.in
浏览文件 @
dbe0bed7
...
...
@@ -73,6 +73,9 @@
# define gzoffset64 z_gzoffset64
# define gzopen z_gzopen
# define gzopen64 z_gzopen64
# ifdef _WIN32
# define gzopen_w z_gzopen_w
# endif
# define gzprintf z_gzprintf
# define gzputc z_gzputc
# define gzputs z_gzputs
...
...
zlib.h
浏览文件 @
dbe0bed7
...
...
@@ -1732,6 +1732,10 @@ ZEXTERN const uLongf * ZEXPORT get_crc_table OF((void));
ZEXTERN
int
ZEXPORT
inflateUndermine
OF
((
z_streamp
,
int
));
ZEXTERN
int
ZEXPORT
inflateResetKeep
OF
((
z_streamp
));
ZEXTERN
int
ZEXPORT
deflateResetKeep
OF
((
z_streamp
));
#if defined(_WIN32) && !defined(Z_SOLO)
ZEXTERN
gzFile
ZEXPORT
gzopen_w
OF
((
const
w_char
*
path
,
const
char
*
mode
));
#endif
#ifdef __cplusplus
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录