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
141d3a3b
Commit
141d3a3b
authored
Jun 13, 2003
by
Gregory M. Turner
Committed by
Alexandre Julliard
Jun 13, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix some uglies.
parent
656dc7a8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
cabinet.h
dlls/cabinet/cabinet.h
+6
-6
No files found.
dlls/cabinet/cabinet.h
View file @
141d3a3b
...
...
@@ -236,7 +236,7 @@ struct LZXstate {
struct
cab_file
{
struct
cab_file
*
next
;
/* next file in sequence */
struct
cab_folder
*
folder
;
/* folder that contains this file */
LPCSTR
filename
;
/* output name of file */
LPCSTR
filename
;
/* output name of file */
HANDLE
fh
;
/* open file handle or NULL */
cab_ULONG
length
;
/* uncompressed length of file */
cab_ULONG
offset
;
/* uncompressed offset in folder */
...
...
@@ -258,15 +258,15 @@ struct cab_folder {
struct
cabinet
{
struct
cabinet
*
next
;
/* for making a list of cabinets */
LPCSTR
filename
;
/* input name of cabinet */
LPCSTR
filename
;
/* input name of cabinet */
HANDLE
*
fh
;
/* open file handle or NULL */
cab_off_t
filelen
;
/* length of cabinet file */
cab_off_t
blocks_off
;
/* offset to data blocks in file */
struct
cabinet
*
prevcab
,
*
nextcab
;
/* multipart cabinet chains */
char
*
prevname
,
*
nextname
;
/* and their filenames */
char
*
previnfo
,
*
nextinfo
;
/* and their visible names */
struct
cab_folder
*
folders
;
/* first folder in this cabinet */
struct
cab_file
*
files
;
/* first file in this cabinet */
struct
cab_folder
*
folders
;
/* first folder in this cabinet */
struct
cab_file
*
files
;
/* first file in this cabinet */
cab_UBYTE
block_resv
;
/* reserved space in datablocks */
cab_UBYTE
flags
;
/* header flags */
};
...
...
@@ -277,8 +277,8 @@ typedef struct cds_forward {
cab_UBYTE
*
outpos
;
/* (high level) start of data to use up */
cab_UWORD
outlen
;
/* (high level) amount of data to use up */
cab_UWORD
split
;
/* at which split in current folder? */
int
(
*
decompress
)(
int
,
int
,
struct
cds_forward
*
);
/* the chosen compression func
*/
cab_UBYTE
inbuf
[
CAB_INPUTMAX
+
2
];
/* +2 for lzx bitbuffer overflows! */
int
(
*
decompress
)(
int
,
int
,
struct
cds_forward
*
);
/* chosen compress fn
*/
cab_UBYTE
inbuf
[
CAB_INPUTMAX
+
2
];
/* +2 for lzx bitbuffer overflows!
*/
cab_UBYTE
outbuf
[
CAB_BLOCKMAX
];
union
{
struct
ZIPstate
zip
;
...
...
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