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
a6e53eae
Commit
a6e53eae
authored
Apr 16, 2014
by
Piotr Caban
Committed by
Alexandre Julliard
Apr 16, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcr90: Share the source code with msvcrt.
parent
beeea28a
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
36 additions
and
203 deletions
+36
-203
Makefile.in
dlls/msvcr90/Makefile.in
+30
-2
msvcr90.c
dlls/msvcr90/msvcr90.c
+0
-199
msvcr90.spec
dlls/msvcr90/msvcr90.spec
+0
-0
Makefile.in
dlls/msvcrt/Makefile.in
+1
-1
main.c
dlls/msvcrt/main.c
+4
-0
msvcrt.h
dlls/msvcrt/msvcrt.h
+1
-0
make_specfiles
tools/make_specfiles
+0
-1
No files found.
dlls/msvcr90/Makefile.in
View file @
a6e53eae
EXTRADEFS
=
-D_MT
-D_MSVCR_VER
=
90
MODULE
=
msvcr90.dll
IMPORTLIB
=
msvcr90
IMPORTS
=
msvcrt
DELAYIMPORTS
=
advapi32 user32
PARENTSRC
=
../msvcrt
C_SRCS
=
\
msvcr90.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
RC_SRCS
=
msvcr90.rc
dlls/msvcr90/msvcr90.c
deleted
100644 → 0
View file @
beeea28a
/*
* msvcr90 specific functions
*
* Copyright 2010 Detlef Riekenberg
*
* 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 <config.h>
#include <stdarg.h>
#include "stdio.h"
#include "windef.h"
#include "winbase.h"
#ifdef __i386__
#define THISCALL(func) __thiscall_ ## func
#define __thiscall __stdcall
#define DEFINE_THISCALL_WRAPPER(func,args) \
extern void THISCALL(func)(void); \
__ASM_GLOBAL_FUNC(__thiscall_ ## func, \
"popl %eax\n\t" \
"pushl %ecx\n\t" \
"pushl %eax\n\t" \
"jmp " __ASM_NAME(#func) __ASM_STDCALL(args) )
extern
void
*
call_thiscall_func
;
__ASM_GLOBAL_FUNC
(
call_thiscall_func
,
"popl %eax
\n\t
"
"popl %edx
\n\t
"
"popl %ecx
\n\t
"
"pushl %eax
\n\t
"
"jmp *%edx
\n\t
"
)
#define call_func1(func,this) ((void* (WINAPI*)(void*,void*))&call_thiscall_func)(func,this)
#define call_func2(func,this,a) ((void* (WINAPI*)(void*,void*,const void*))&call_thiscall_func)(func,this,(const void*)(a))
#define call_func3(func,this,a,b) ((void* (WINAPI*)(void*,void*,const void*,const void*))&call_thiscall_func)(func,this,(const void*)(a),(const void*)(b))
#else
/* __i386__ */
#define __thiscall __cdecl
#define DEFINE_THISCALL_WRAPPER(func,args)
/* nothing */
#define call_func1(func,this) func(this)
#define call_func2(func,this,a) func(this,a)
#define call_func3(func,this,a,b) func(this,a,b)
#endif
/* __i386__ */
typedef
void
(
__cdecl
*
MSVCRT__se_translator_function
)(
unsigned
int
code
,
struct
_EXCEPTION_POINTERS
*
info
);
static
void
*
(
__cdecl
*
MSVCRT_operator_new
)(
size_t
);
static
void
(
__cdecl
*
MSVCRT_operator_delete
)(
void
*
);
static
MSVCRT__se_translator_function
(
__cdecl
*
MSVCRT__set_se_translator
)(
MSVCRT__se_translator_function
);
static
void
*
(
__thiscall
*
MSVCRT_exception_ctor
)(
void
*
,
const
char
**
);
static
void
*
(
__thiscall
*
MSVCRT_exception_ctor_noalloc
)(
void
*
,
char
**
,
int
);
static
void
*
(
__thiscall
*
MSVCRT_exception_copy_ctor
)(
void
*
,
const
void
*
);
static
void
(
__thiscall
*
MSVCRT_exception_dtor
)(
void
*
);
static
void
init_cxx_funcs
(
void
)
{
HMODULE
hmod
=
GetModuleHandleA
(
"msvcrt.dll"
);
if
(
sizeof
(
void
*
)
>
sizeof
(
int
))
/* 64-bit has different names */
{
MSVCRT_operator_new
=
(
void
*
)
GetProcAddress
(
hmod
,
"??2@YAPEAX_K@Z"
);
MSVCRT_operator_delete
=
(
void
*
)
GetProcAddress
(
hmod
,
"??3@YAXPEAX@Z"
);
MSVCRT__set_se_translator
=
(
void
*
)
GetProcAddress
(
hmod
,
"?_set_se_translator@@YAP6AXIPEAU_EXCEPTION_POINTERS@@@ZP6AXI0@Z@Z"
);
MSVCRT_exception_ctor
=
(
void
*
)
GetProcAddress
(
hmod
,
"??0exception@@QEAA@AEBQEBD@Z"
);
MSVCRT_exception_ctor_noalloc
=
(
void
*
)
GetProcAddress
(
hmod
,
"??0exception@@QEAA@AEBQEBDH@Z"
);
MSVCRT_exception_copy_ctor
=
(
void
*
)
GetProcAddress
(
hmod
,
"??0exception@@QEAA@AEBV0@@Z"
);
MSVCRT_exception_dtor
=
(
void
*
)
GetProcAddress
(
hmod
,
"??1exception@@UEAA@XZ"
);
}
else
{
MSVCRT_operator_new
=
(
void
*
)
GetProcAddress
(
hmod
,
"??2@YAPAXI@Z"
);
MSVCRT_operator_delete
=
(
void
*
)
GetProcAddress
(
hmod
,
"??3@YAXPAX@Z"
);
MSVCRT__set_se_translator
=
(
void
*
)
GetProcAddress
(
hmod
,
"?_set_se_translator@@YAP6AXIPAU_EXCEPTION_POINTERS@@@ZP6AXI0@Z@Z"
);
MSVCRT_exception_ctor
=
(
void
*
)
GetProcAddress
(
hmod
,
"??0exception@@QAE@ABQBD@Z"
);
MSVCRT_exception_ctor_noalloc
=
(
void
*
)
GetProcAddress
(
hmod
,
"??0exception@@QAE@ABQBDH@Z"
);
MSVCRT_exception_copy_ctor
=
(
void
*
)
GetProcAddress
(
hmod
,
"??0exception@@QAE@ABV0@@Z"
);
MSVCRT_exception_dtor
=
(
void
*
)
GetProcAddress
(
hmod
,
"??1exception@@UAE@XZ"
);
}
}
/*********************************************************************
* DllMain (MSVCR90.@)
*/
BOOL
WINAPI
DllMain
(
HINSTANCE
hdll
,
DWORD
reason
,
LPVOID
reserved
)
{
switch
(
reason
)
{
case
DLL_PROCESS_ATTACH
:
DisableThreadLibraryCalls
(
hdll
);
init_cxx_funcs
();
_set_printf_count_output
(
0
);
}
return
TRUE
;
}
/*********************************************************************
* _decode_pointer (MSVCR90.@)
*
* cdecl version of DecodePointer
*
*/
void
*
CDECL
MSVCR90_decode_pointer
(
void
*
ptr
)
{
return
DecodePointer
(
ptr
);
}
/*********************************************************************
* _encode_pointer (MSVCR90.@)
*
* cdecl version of EncodePointer
*
*/
void
*
CDECL
MSVCR90_encode_pointer
(
void
*
ptr
)
{
return
EncodePointer
(
ptr
);
}
/*********************************************************************
* ??2@YAPAXI@Z (MSVCR90.@)
*
* Naver LINE expects that this function is implemented inside msvcr90
*/
void
*
CDECL
MSVCR90_operator_new
(
size_t
size
)
{
return
MSVCRT_operator_new
(
size
);
}
/*********************************************************************
* ??3@YAXPAX@Z (MSVCR90.@)
*
* Naver LINE expects that this function is implemented inside msvcr90
*/
void
CDECL
MSVCR90_operator_delete
(
void
*
ptr
)
{
MSVCRT_operator_delete
(
ptr
);
}
/*********************************************************************
* ?_set_se_translator@@YAP6AXIPAU_EXCEPTION_POINTERS@@@ZP6AXI0@Z@Z (MSVCR90.@)
*
* Naver LINE expects that this function is implemented inside msvcr90
*/
MSVCRT__se_translator_function
CDECL
MSVCR90__set_se_translator
(
MSVCRT__se_translator_function
func
)
{
return
MSVCRT__set_se_translator
(
func
);
}
/* ??0exception@std@@QAE@ABQBD@Z */
/* ??0exception@std@@QEAA@AEBQEBD@Z */
DEFINE_THISCALL_WRAPPER
(
exception_ctor
,
8
)
void
*
__thiscall
exception_ctor
(
void
*
this
,
const
char
**
name
)
{
return
call_func2
(
MSVCRT_exception_ctor
,
this
,
name
);
}
/* ??0exception@std@@QAE@ABQBDH@Z */
/* ??0exception@std@@QEAA@AEBQEBDH@Z */
DEFINE_THISCALL_WRAPPER
(
exception_ctor_noalloc
,
12
)
void
*
__thiscall
exception_ctor_noalloc
(
void
*
this
,
char
**
name
,
int
noalloc
)
{
return
call_func3
(
MSVCRT_exception_ctor_noalloc
,
this
,
name
,
noalloc
);
}
/* ??0exception@std@@QAE@ABV01@@Z */
/* ??0exception@std@@QEAA@AEBV01@@Z */
DEFINE_THISCALL_WRAPPER
(
exception_copy_ctor
,
8
)
void
*
__thiscall
exception_copy_ctor
(
void
*
this
,
const
void
*
rhs
)
{
return
call_func2
(
MSVCRT_exception_copy_ctor
,
this
,
rhs
);
}
/* ??1exception@std@@UAE@XZ */
/* ??1exception@std@@UEAA@XZ */
DEFINE_THISCALL_WRAPPER
(
exception_dtor
,
4
)
void
__thiscall
exception_dtor
(
void
*
this
)
{
call_func1
(
MSVCRT_exception_dtor
,
this
);
}
dlls/msvcr90/msvcr90.spec
View file @
a6e53eae
This source diff could not be displayed because it is too large. You can
view the blob
instead.
dlls/msvcrt/Makefile.in
View file @
a6e53eae
EXTRADEFS
=
-D_MT
EXTRADEFS
=
-D_MT
-D_MSVCR_VER
=
0
MODULE
=
msvcrt.dll
IMPORTLIB
=
msvcrt
DELAYIMPORTS
=
advapi32 user32
...
...
dlls/msvcrt/main.c
View file @
a6e53eae
...
...
@@ -111,8 +111,12 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
msvcrt_init_console
();
msvcrt_init_args
();
msvcrt_init_signals
();
#if _MSVCR_VER == 0
/* don't allow unloading msvcrt, we can't setup file handles twice */
LdrAddRefDll
(
LDR_ADDREF_DLL_PIN
,
hinstDLL
);
#elif _MSVCR_VER >= 80
MSVCRT__set_printf_count_output
(
0
);
#endif
TRACE
(
"finished process init
\n
"
);
break
;
case
DLL_THREAD_ATTACH
:
...
...
dlls/msvcrt/msvcrt.h
View file @
a6e53eae
...
...
@@ -933,6 +933,7 @@ int __cdecl MSVCRT_sprintf(char*,const char*,...);
int
__cdecl
MSVCRT__snprintf
(
char
*
,
unsigned
int
,
const
char
*
,...);
int
__cdecl
MSVCRT__scprintf
(
const
char
*
,...);
int
__cdecl
MSVCRT_raise
(
int
sig
);
int
__cdecl
MSVCRT__set_printf_count_output
(
int
);
#define MSVCRT__ENABLE_PER_THREAD_LOCALE 1
#define MSVCRT__DISABLE_PER_THREAD_LOCALE 2
...
...
tools/make_specfiles
View file @
a6e53eae
...
...
@@ -31,7 +31,6 @@ my @dll_groups =
"msvcr100"
,
"msvcr110"
,
"msvcirt"
,
"msvcr90"
,
"msvcr80"
,
"msvcr71"
,
"msvcr70"
,
...
...
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