Commit c99a1920 authored by Dan Kegel's avatar Dan Kegel Committed by Alexandre Julliard

vcomp: No-op stubs for _vcomp_single_begin, _vcomp_single_end.

parent fd104f83
...@@ -96,6 +96,17 @@ void CDECL _vcomp_set_num_threads(int num_threads) ...@@ -96,6 +96,17 @@ void CDECL _vcomp_set_num_threads(int num_threads)
TRACE("(%d): stub\n", num_threads); TRACE("(%d): stub\n", num_threads);
} }
int CDECL _vcomp_single_begin(int flags)
{
TRACE("(%x): stub\n", flags);
return TRUE;
}
void CDECL _vcomp_single_end(void)
{
TRACE("stub\n");
}
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
{ {
TRACE("(0x%p, %d, %p)\n", hinstDLL, fdwReason, lpvReserved); TRACE("(0x%p, %d, %p)\n", hinstDLL, fdwReason, lpvReserved);
......
...@@ -86,8 +86,8 @@ ...@@ -86,8 +86,8 @@
@ stub _vcomp_sections_init @ stub _vcomp_sections_init
@ stub _vcomp_sections_next @ stub _vcomp_sections_next
@ cdecl _vcomp_set_num_threads(long) @ cdecl _vcomp_set_num_threads(long)
@ stub _vcomp_single_begin @ cdecl _vcomp_single_begin(long)
@ stub _vcomp_single_end @ cdecl _vcomp_single_end()
@ stub omp_destroy_lock @ stub omp_destroy_lock
@ stub omp_destroy_nest_lock @ stub omp_destroy_nest_lock
@ cdecl omp_get_dynamic() @ cdecl omp_get_dynamic()
......
...@@ -86,8 +86,8 @@ ...@@ -86,8 +86,8 @@
@ stub _vcomp_sections_init @ stub _vcomp_sections_init
@ stub _vcomp_sections_next @ stub _vcomp_sections_next
@ cdecl _vcomp_set_num_threads(long) vcomp._vcomp_set_num_threads @ cdecl _vcomp_set_num_threads(long) vcomp._vcomp_set_num_threads
@ stub _vcomp_single_begin @ cdecl _vcomp_single_begin(long) vcomp._vcomp_single_begin
@ stub _vcomp_single_end @ cdecl _vcomp_single_end() vcomp._vcomp_single_end
@ stub omp_destroy_lock @ stub omp_destroy_lock
@ stub omp_destroy_nest_lock @ stub omp_destroy_nest_lock
@ cdecl omp_get_dynamic() vcomp.omp_get_dynamic @ cdecl omp_get_dynamic() vcomp.omp_get_dynamic
......
...@@ -86,8 +86,8 @@ ...@@ -86,8 +86,8 @@
@ stub _vcomp_sections_init @ stub _vcomp_sections_init
@ stub _vcomp_sections_next @ stub _vcomp_sections_next
@ cdecl _vcomp_set_num_threads(long) vcomp._vcomp_set_num_threads @ cdecl _vcomp_set_num_threads(long) vcomp._vcomp_set_num_threads
@ stub _vcomp_single_begin @ cdecl _vcomp_single_begin(long) vcomp._vcomp_single_begin
@ stub _vcomp_single_end @ cdecl _vcomp_single_end() vcomp._vcomp_single_end
@ stub omp_destroy_lock @ stub omp_destroy_lock
@ stub omp_destroy_nest_lock @ stub omp_destroy_nest_lock
@ cdecl omp_get_dynamic() vcomp.omp_get_dynamic @ cdecl omp_get_dynamic() vcomp.omp_get_dynamic
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment