2010-03-12 17:25:50 +01:00
|
|
|
/*
|
|
|
|
* 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 <stdarg.h>
|
|
|
|
|
2011-04-27 20:09:00 +02:00
|
|
|
#include "stdio.h"
|
2010-03-12 17:25:50 +01:00
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
2011-01-23 17:46:30 +01:00
|
|
|
|
2013-03-27 16:15:01 +01:00
|
|
|
typedef void (__cdecl *MSVCRT__se_translator_function)(unsigned int code, struct _EXCEPTION_POINTERS *info);
|
|
|
|
|
2013-03-27 16:14:47 +01:00
|
|
|
static void* (__cdecl *MSVCRT_operator_new)(size_t);
|
|
|
|
static void (__cdecl *MSVCRT_operator_delete)(void*);
|
2013-03-27 16:15:01 +01:00
|
|
|
static MSVCRT__se_translator_function (__cdecl *MSVCRT__set_se_translator)(MSVCRT__se_translator_function);
|
2013-03-27 16:14:47 +01:00
|
|
|
|
|
|
|
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");
|
2013-03-27 16:15:01 +01:00
|
|
|
MSVCRT__set_se_translator = (void*)GetProcAddress(hmod,
|
|
|
|
"?_set_se_translator@@YAP6AXIPEAU_EXCEPTION_POINTERS@@@ZP6AXI0@Z@Z");
|
2013-03-27 16:14:47 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
MSVCRT_operator_new = (void*)GetProcAddress(hmod, "??2@YAPAXI@Z");
|
|
|
|
MSVCRT_operator_delete = (void*)GetProcAddress(hmod, "??3@YAXPAX@Z");
|
2013-03-27 16:15:01 +01:00
|
|
|
MSVCRT__set_se_translator = (void*)GetProcAddress(hmod,
|
|
|
|
"?_set_se_translator@@YAP6AXIPAU_EXCEPTION_POINTERS@@@ZP6AXI0@Z@Z");
|
2013-03-27 16:14:47 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-03-19 12:28:53 +01:00
|
|
|
/*********************************************************************
|
|
|
|
* DllMain (MSVCR90.@)
|
|
|
|
*/
|
2010-03-12 17:25:50 +01:00
|
|
|
BOOL WINAPI DllMain(HINSTANCE hdll, DWORD reason, LPVOID reserved)
|
|
|
|
{
|
|
|
|
switch (reason)
|
|
|
|
{
|
|
|
|
case DLL_PROCESS_ATTACH:
|
|
|
|
DisableThreadLibraryCalls(hdll);
|
2013-03-27 16:14:47 +01:00
|
|
|
init_cxx_funcs();
|
2011-04-27 20:09:00 +02:00
|
|
|
_set_printf_count_output(0);
|
2010-03-12 17:25:50 +01:00
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
2010-03-19 12:28:53 +01:00
|
|
|
|
2010-03-25 11:06:29 +01:00
|
|
|
/*********************************************************************
|
|
|
|
* _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);
|
|
|
|
}
|
2013-03-27 16:14:47 +01:00
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
* ??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)
|
|
|
|
{
|
2013-03-30 23:41:56 +01:00
|
|
|
MSVCRT_operator_delete(ptr);
|
2013-03-27 16:14:47 +01:00
|
|
|
}
|
2013-03-27 16:15:01 +01:00
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
* ?_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);
|
|
|
|
}
|