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
2aed5d77
Commit
2aed5d77
authored
Dec 18, 2002
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Made crtdll a normal user of msvcrt by setting the right include
path.
parent
3f5ff2fb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
Makefile.in
dlls/crtdll/Makefile.in
+1
-0
crtdll_main.c
dlls/crtdll/crtdll_main.c
+5
-6
No files found.
dlls/crtdll/Makefile.in
View file @
2aed5d77
...
...
@@ -5,6 +5,7 @@ VPATH = @srcdir@
MODULE
=
crtdll.dll
IMPORTS
=
msvcrt kernel32
EXTRALIBS
=
$(LIBUNICODE)
EXTRAINCL
=
-I
$(TOPSRCDIR)
/include/msvcrt
LDDLLFLAGS
=
@LDDLLFLAGS@
SYMBOLFILE
=
$(MODULE)
.tmp.o
...
...
dlls/crtdll/crtdll_main.c
View file @
2aed5d77
...
...
@@ -21,8 +21,7 @@
#include "config.h"
#include "windef.h"
#include "winbase.h"
#define USE_MSVCRT_PREFIX
#include "msvcrt/sys/stat.h"
#include "sys/stat.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
crtdll
);
...
...
@@ -53,10 +52,10 @@ struct crtdll_stat
short
st_uid
;
short
st_gid
;
crtdll_dev_t
st_rdev
;
MSVCRT
(
_off_t
)
st_size
;
MSVCRT
(
time_t
)
st_atime
;
MSVCRT
(
time_t
)
st_mtime
;
MSVCRT
(
time_t
)
st_ctime
;
_off_t
st_size
;
time_t
st_atime
;
time_t
st_mtime
;
time_t
st_ctime
;
};
/* convert struct _stat from crtdll format to msvcrt format */
...
...
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