Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
e57a4e94
Commit
e57a4e94
authored
Apr 18, 2014
by
Piotr Caban
Committed by
Alexandre Julliard
Apr 18, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcr71: Share the source code with msvcrt.
parent
3a7bf4a3
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
30 additions
and
40 deletions
+30
-40
Makefile.in
dlls/msvcr71/Makefile.in
+30
-2
msvcr71.c
dlls/msvcr71/msvcr71.c
+0
-37
msvcr71.spec
dlls/msvcr71/msvcr71.spec
+0
-0
make_specfiles
tools/make_specfiles
+0
-1
No files found.
dlls/msvcr71/Makefile.in
View file @
e57a4e94
EXTRADEFS
=
-D_MT
-D_MSVCR_VER
=
71
MODULE
=
msvcr71.dll
IMPORTLIB
=
msvcr71
IMPORTS
=
msvcrt
DELAYIMPORTS
=
advapi32 user32
PARENTSRC
=
../msvcrt
C_SRCS
=
\
msvcr71.c
console.c
\
cpp.c
\
ctype.c
\
data.c
\
dir.c
\
environ.c
\
errno.c
\
except.c
\
except_arm.c
\
except_i386.c
\
except_x86_64.c
\
exit.c
\
file.c
\
heap.c
\
locale.c
\
lock.c
\
main.c
\
math.c
\
mbcs.c
\
misc.c
\
process.c
\
scanf.c
\
string.c
\
thread.c
\
time.c
\
undname.c
\
wcs.c
dlls/msvcr71/msvcr71.c
deleted
100644 → 0
View file @
3a7bf4a3
/*
* msvcr71 main file
*
* Copyright (C) 2008 Hans Leidekker
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
BOOL
WINAPI
DllMain
(
HINSTANCE
inst
,
DWORD
reason
,
LPVOID
reserved
)
{
switch
(
reason
)
{
case
DLL_WINE_PREATTACH
:
return
FALSE
;
/* prefer native version */
case
DLL_PROCESS_ATTACH
:
DisableThreadLibraryCalls
(
inst
);
break
;
}
return
TRUE
;
}
dlls/msvcr71/msvcr71.spec
View file @
e57a4e94
This diff is collapsed.
Click to expand it.
tools/make_specfiles
View file @
e57a4e94
...
...
@@ -30,7 +30,6 @@ my @dll_groups =
"msvcrt"
,
"msvcirt"
,
"msvcr80"
,
"msvcr71"
,
"msvcrt40"
,
"msvcrt20"
,
"msvcrtd"
,
...
...
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