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
df2521bf
Commit
df2521bf
authored
Nov 25, 2019
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cabinet: Build with msvcrt.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
03e9bf95
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
29 deletions
+7
-29
Makefile.in
dlls/cabinet/Makefile.in
+2
-0
cabinet.h
dlls/cabinet/cabinet.h
+0
-21
cabinet_main.c
dlls/cabinet/cabinet_main.c
+1
-2
fci.c
dlls/cabinet/fci.c
+2
-4
fdi.c
dlls/cabinet/fdi.c
+2
-2
No files found.
dlls/cabinet/Makefile.in
View file @
df2521bf
MODULE
=
cabinet.dll
IMPORTLIB
=
cabinet
EXTRADLLFLAGS
=
-mno-cygwin
C_SRCS
=
\
cabinet_main.c
\
deflate.c
\
...
...
dlls/cabinet/cabinet.h
View file @
df2521bf
...
...
@@ -29,27 +29,6 @@
#include "fdi.h"
#include "fci.h"
/* from msvcrt/sys/stat.h */
#define _S_IWRITE 0x0080
#define _S_IREAD 0x0100
/* from msvcrt/fcntl.h */
#define _O_RDONLY 0
#define _O_WRONLY 1
#define _O_RDWR 2
#define _O_ACCMODE (_O_RDONLY|_O_WRONLY|_O_RDWR)
#define _O_APPEND 0x0008
#define _O_RANDOM 0x0010
#define _O_SEQUENTIAL 0x0020
#define _O_TEMPORARY 0x0040
#define _O_NOINHERIT 0x0080
#define _O_CREAT 0x0100
#define _O_TRUNC 0x0200
#define _O_EXCL 0x0400
#define _O_SHORT_LIVED 0x1000
#define _O_TEXT 0x4000
#define _O_BINARY 0x8000
#define CAB_SPLITMAX (10)
#define CAB_SEARCH_SIZE (32*1024)
...
...
dlls/cabinet/cabinet_main.c
View file @
df2521bf
...
...
@@ -18,11 +18,10 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include <assert.h>
#include <stdarg.h>
#include <string.h>
#include <fcntl.h>
#include "windef.h"
#include "winbase.h"
...
...
dlls/cabinet/fci.c
View file @
df2521bf
...
...
@@ -30,14 +30,12 @@ There is still some work to be done:
*/
#include "config.h"
#include <assert.h>
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
#include <sys/stat.h>
#include <fcntl.h>
#include "windef.h"
#include "winbase.h"
...
...
dlls/cabinet/fdi.c
View file @
df2521bf
...
...
@@ -58,10 +58,10 @@
* -gmt
*/
#include "config.h"
#include <stdarg.h>
#include <stdio.h>
#include <sys/stat.h>
#include <fcntl.h>
#include "windef.h"
#include "winbase.h"
...
...
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