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
40a6749f
Commit
40a6749f
authored
Feb 06, 2014
by
Piotr Caban
Committed by
Alexandre Julliard
Feb 07, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp70: Share the source code with msvcp90.
parent
ae868395
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
38 deletions
+12
-38
Makefile.in
dlls/msvcp70/Makefile.in
+12
-1
msvcp70.c
dlls/msvcp70/msvcp70.c
+0
-37
msvcp70.spec
dlls/msvcp70/msvcp70.spec
+0
-0
No files found.
dlls/msvcp70/Makefile.in
View file @
40a6749f
MODULE
=
msvcp70.dll
IMPORTS
=
msvcr70
EXTRADEFS
=
-D_MSVCP_VER
=
70
PARENTSRC
=
../msvcp90
C_SRCS
=
msvcp70.c
C_SRCS
=
\
exception.c
\
ios.c
\
locale.c
\
math.c
\
memory.c
\
misc.c
\
msvcp_main.c
\
string.c
dlls/msvcp70/msvcp70.c
deleted
100644 → 0
View file @
ae868395
/*
* msvcp70 specific functions
*
* Copyright 2010 Piotr Caban for CodeWeavers
*
* 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
hdll
,
DWORD
reason
,
LPVOID
reserved
)
{
switch
(
reason
)
{
case
DLL_WINE_PREATTACH
:
return
FALSE
;
/* prefer native version */
case
DLL_PROCESS_ATTACH
:
DisableThreadLibraryCalls
(
hdll
);
}
return
TRUE
;
}
dlls/msvcp70/msvcp70.spec
View file @
40a6749f
This source diff could not be displayed because it is too large. You can
view the blob
instead.
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