vcomp90: Add new stub dll.
This commit is contained in:
parent
65a15809d5
commit
a6086e1161
|
@ -15731,6 +15731,7 @@ wine_fn_config_dll vbscript enable_vbscript
|
||||||
wine_fn_config_test dlls/vbscript/tests vbscript_test
|
wine_fn_config_test dlls/vbscript/tests vbscript_test
|
||||||
wine_fn_config_dll vcomp enable_vcomp
|
wine_fn_config_dll vcomp enable_vcomp
|
||||||
wine_fn_config_dll vcomp100 enable_vcomp100
|
wine_fn_config_dll vcomp100 enable_vcomp100
|
||||||
|
wine_fn_config_dll vcomp90 enable_vcomp90
|
||||||
wine_fn_config_dll vdhcp.vxd enable_win16
|
wine_fn_config_dll vdhcp.vxd enable_win16
|
||||||
wine_fn_config_dll vdmdbg enable_vdmdbg implib
|
wine_fn_config_dll vdmdbg enable_vdmdbg implib
|
||||||
wine_fn_config_dll ver.dll16 enable_win16
|
wine_fn_config_dll ver.dll16 enable_win16
|
||||||
|
|
|
@ -3004,6 +3004,7 @@ WINE_CONFIG_DLL(vbscript)
|
||||||
WINE_CONFIG_TEST(dlls/vbscript/tests)
|
WINE_CONFIG_TEST(dlls/vbscript/tests)
|
||||||
WINE_CONFIG_DLL(vcomp)
|
WINE_CONFIG_DLL(vcomp)
|
||||||
WINE_CONFIG_DLL(vcomp100)
|
WINE_CONFIG_DLL(vcomp100)
|
||||||
|
WINE_CONFIG_DLL(vcomp90)
|
||||||
WINE_CONFIG_DLL(vdhcp.vxd,enable_win16)
|
WINE_CONFIG_DLL(vdhcp.vxd,enable_win16)
|
||||||
WINE_CONFIG_DLL(vdmdbg,,[implib])
|
WINE_CONFIG_DLL(vdmdbg,,[implib])
|
||||||
WINE_CONFIG_DLL(ver.dll16,enable_win16)
|
WINE_CONFIG_DLL(ver.dll16,enable_win16)
|
||||||
|
|
|
@ -85,7 +85,7 @@
|
||||||
@ stub _vcomp_reduction_u8
|
@ stub _vcomp_reduction_u8
|
||||||
@ stub _vcomp_sections_init
|
@ stub _vcomp_sections_init
|
||||||
@ stub _vcomp_sections_next
|
@ stub _vcomp_sections_next
|
||||||
@ stub _vcomp_set_num_threads
|
@ cdecl _vcomp_set_num_threads(long) vcomp._vcomp_set_num_threads
|
||||||
@ stub _vcomp_single_begin
|
@ stub _vcomp_single_begin
|
||||||
@ stub _vcomp_single_end
|
@ stub _vcomp_single_end
|
||||||
@ stub omp_destroy_lock
|
@ stub omp_destroy_lock
|
||||||
|
@ -93,11 +93,11 @@
|
||||||
@ stub omp_get_dynamic
|
@ stub omp_get_dynamic
|
||||||
@ stub omp_get_max_threads
|
@ stub omp_get_max_threads
|
||||||
@ stub omp_get_nested
|
@ stub omp_get_nested
|
||||||
@ stub omp_get_num_procs
|
@ cdecl omp_get_num_procs() vcomp.omp_get_num_procs
|
||||||
@ stub omp_get_num_threads
|
@ stub omp_get_num_threads
|
||||||
@ stub omp_get_thread_num
|
@ stub omp_get_thread_num
|
||||||
@ stub omp_get_wtick
|
@ stub omp_get_wtick
|
||||||
@ stub omp_get_wtime
|
@ cdecl omp_get_wtime() vcomp.omp_get_wtime
|
||||||
@ stub omp_in_parallel
|
@ stub omp_in_parallel
|
||||||
@ stub omp_init_lock
|
@ stub omp_init_lock
|
||||||
@ stub omp_init_nest_lock
|
@ stub omp_init_nest_lock
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
MODULE = vcomp90.dll
|
||||||
|
|
||||||
|
C_SRCS = \
|
||||||
|
main.c
|
||||||
|
|
||||||
|
@MAKE_DLL_RULES@
|
|
@ -0,0 +1,48 @@
|
||||||
|
/*
|
||||||
|
*
|
||||||
|
* vcomp90 implementation
|
||||||
|
*
|
||||||
|
* Copyright 2012 André Hentschel
|
||||||
|
*
|
||||||
|
* 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 "windef.h"
|
||||||
|
#include "winbase.h"
|
||||||
|
#include "wine/debug.h"
|
||||||
|
|
||||||
|
WINE_DEFAULT_DEBUG_CHANNEL(vcomp90);
|
||||||
|
|
||||||
|
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
|
||||||
|
{
|
||||||
|
TRACE("(0x%p, %d, %p)\n", hinstDLL, fdwReason, lpvReserved);
|
||||||
|
|
||||||
|
switch (fdwReason)
|
||||||
|
{
|
||||||
|
case DLL_WINE_PREATTACH:
|
||||||
|
return FALSE; /* prefer native version */
|
||||||
|
case DLL_PROCESS_ATTACH:
|
||||||
|
DisableThreadLibraryCalls(hinstDLL);
|
||||||
|
break;
|
||||||
|
case DLL_PROCESS_DETACH:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return TRUE;
|
||||||
|
}
|
|
@ -0,0 +1,112 @@
|
||||||
|
@ stub _vcomp_atomic_add_i1
|
||||||
|
@ stub _vcomp_atomic_add_i2
|
||||||
|
@ stub _vcomp_atomic_add_i4
|
||||||
|
@ stub _vcomp_atomic_add_i8
|
||||||
|
@ stub _vcomp_atomic_add_r4
|
||||||
|
@ stub _vcomp_atomic_add_r8
|
||||||
|
@ stub _vcomp_atomic_and_i1
|
||||||
|
@ stub _vcomp_atomic_and_i2
|
||||||
|
@ stub _vcomp_atomic_and_i4
|
||||||
|
@ stub _vcomp_atomic_and_i8
|
||||||
|
@ stub _vcomp_atomic_div_i1
|
||||||
|
@ stub _vcomp_atomic_div_i2
|
||||||
|
@ stub _vcomp_atomic_div_i4
|
||||||
|
@ stub _vcomp_atomic_div_i8
|
||||||
|
@ stub _vcomp_atomic_div_r4
|
||||||
|
@ stub _vcomp_atomic_div_r8
|
||||||
|
@ stub _vcomp_atomic_div_ui1
|
||||||
|
@ stub _vcomp_atomic_div_ui2
|
||||||
|
@ stub _vcomp_atomic_div_ui4
|
||||||
|
@ stub _vcomp_atomic_div_ui8
|
||||||
|
@ stub _vcomp_atomic_mul_i1
|
||||||
|
@ stub _vcomp_atomic_mul_i2
|
||||||
|
@ stub _vcomp_atomic_mul_i4
|
||||||
|
@ stub _vcomp_atomic_mul_i8
|
||||||
|
@ stub _vcomp_atomic_mul_r4
|
||||||
|
@ stub _vcomp_atomic_mul_r8
|
||||||
|
@ stub _vcomp_atomic_or_i1
|
||||||
|
@ stub _vcomp_atomic_or_i2
|
||||||
|
@ stub _vcomp_atomic_or_i4
|
||||||
|
@ stub _vcomp_atomic_or_i8
|
||||||
|
@ stub _vcomp_atomic_shl_i1
|
||||||
|
@ stub _vcomp_atomic_shl_i2
|
||||||
|
@ stub _vcomp_atomic_shl_i4
|
||||||
|
@ stub _vcomp_atomic_shl_i8
|
||||||
|
@ stub _vcomp_atomic_shr_i1
|
||||||
|
@ stub _vcomp_atomic_shr_i2
|
||||||
|
@ stub _vcomp_atomic_shr_i4
|
||||||
|
@ stub _vcomp_atomic_shr_i8
|
||||||
|
@ stub _vcomp_atomic_shr_ui1
|
||||||
|
@ stub _vcomp_atomic_shr_ui2
|
||||||
|
@ stub _vcomp_atomic_shr_ui4
|
||||||
|
@ stub _vcomp_atomic_shr_ui8
|
||||||
|
@ stub _vcomp_atomic_sub_i1
|
||||||
|
@ stub _vcomp_atomic_sub_i2
|
||||||
|
@ stub _vcomp_atomic_sub_i4
|
||||||
|
@ stub _vcomp_atomic_sub_i8
|
||||||
|
@ stub _vcomp_atomic_sub_r4
|
||||||
|
@ stub _vcomp_atomic_sub_r8
|
||||||
|
@ stub _vcomp_atomic_xor_i1
|
||||||
|
@ stub _vcomp_atomic_xor_i2
|
||||||
|
@ stub _vcomp_atomic_xor_i4
|
||||||
|
@ stub _vcomp_atomic_xor_i8
|
||||||
|
@ stub _vcomp_barrier
|
||||||
|
@ stub _vcomp_copyprivate_broadcast
|
||||||
|
@ stub _vcomp_copyprivate_receive
|
||||||
|
@ stub _vcomp_enter_critsect
|
||||||
|
@ stub _vcomp_flush
|
||||||
|
@ stub _vcomp_for_dynamic_init
|
||||||
|
@ stub _vcomp_for_dynamic_init_i8
|
||||||
|
@ stub _vcomp_for_dynamic_next
|
||||||
|
@ stub _vcomp_for_dynamic_next_i8
|
||||||
|
@ stub _vcomp_for_static_end
|
||||||
|
@ stub _vcomp_for_static_init
|
||||||
|
@ stub _vcomp_for_static_init_i8
|
||||||
|
@ stub _vcomp_for_static_simple_init
|
||||||
|
@ stub _vcomp_for_static_simple_init_i8
|
||||||
|
@ stub _vcomp_fork
|
||||||
|
@ stub _vcomp_get_thread_num
|
||||||
|
@ stub _vcomp_leave_critsect
|
||||||
|
@ stub _vcomp_master_barrier
|
||||||
|
@ stub _vcomp_master_begin
|
||||||
|
@ stub _vcomp_master_end
|
||||||
|
@ stub _vcomp_ordered_begin
|
||||||
|
@ stub _vcomp_ordered_end
|
||||||
|
@ stub _vcomp_ordered_loop_end
|
||||||
|
@ stub _vcomp_reduction_i1
|
||||||
|
@ stub _vcomp_reduction_i2
|
||||||
|
@ stub _vcomp_reduction_i4
|
||||||
|
@ stub _vcomp_reduction_i8
|
||||||
|
@ stub _vcomp_reduction_r4
|
||||||
|
@ stub _vcomp_reduction_r8
|
||||||
|
@ stub _vcomp_reduction_u1
|
||||||
|
@ stub _vcomp_reduction_u2
|
||||||
|
@ stub _vcomp_reduction_u4
|
||||||
|
@ stub _vcomp_reduction_u8
|
||||||
|
@ stub _vcomp_sections_init
|
||||||
|
@ stub _vcomp_sections_next
|
||||||
|
@ cdecl _vcomp_set_num_threads(long) vcomp._vcomp_set_num_threads
|
||||||
|
@ stub _vcomp_single_begin
|
||||||
|
@ stub _vcomp_single_end
|
||||||
|
@ stub omp_destroy_lock
|
||||||
|
@ stub omp_destroy_nest_lock
|
||||||
|
@ stub omp_get_dynamic
|
||||||
|
@ stub omp_get_max_threads
|
||||||
|
@ stub omp_get_nested
|
||||||
|
@ cdecl omp_get_num_procs() vcomp.omp_get_num_procs
|
||||||
|
@ stub omp_get_num_threads
|
||||||
|
@ stub omp_get_thread_num
|
||||||
|
@ stub omp_get_wtick
|
||||||
|
@ cdecl omp_get_wtime() vcomp.omp_get_wtime
|
||||||
|
@ stub omp_in_parallel
|
||||||
|
@ stub omp_init_lock
|
||||||
|
@ stub omp_init_nest_lock
|
||||||
|
@ stub omp_set_dynamic
|
||||||
|
@ stub omp_set_lock
|
||||||
|
@ stub omp_set_nest_lock
|
||||||
|
@ stub omp_set_nested
|
||||||
|
@ stub omp_set_num_threads
|
||||||
|
@ stub omp_test_lock
|
||||||
|
@ stub omp_test_nest_lock
|
||||||
|
@ stub omp_unset_lock
|
||||||
|
@ stub omp_unset_nest_lock
|
|
@ -109,6 +109,7 @@ my @dll_groups =
|
||||||
[
|
[
|
||||||
"vcomp",
|
"vcomp",
|
||||||
"vcomp100",
|
"vcomp100",
|
||||||
|
"vcomp90",
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
"atl",
|
"atl",
|
||||||
|
|
Loading…
Reference in New Issue