vcomp: Better stub for omp_get_max_threads.

This commit is contained in:
Dan Kegel 2012-09-29 20:20:38 -07:00 committed by Alexandre Julliard
parent 54a10eb1aa
commit ed23241733
2 changed files with 7 additions and 1 deletions

View file

@ -29,6 +29,12 @@
WINE_DEFAULT_DEBUG_CHANNEL(vcomp);
int CDECL omp_get_max_threads(void)
{
TRACE("stub\n");
return 1;
}
int CDECL omp_get_num_procs(void)
{
TRACE("stub\n");

View file

@ -91,7 +91,7 @@
@ stub omp_destroy_lock
@ stub omp_destroy_nest_lock
@ stub omp_get_dynamic
@ stub omp_get_max_threads
@ cdecl omp_get_max_threads()
@ stub omp_get_nested
@ cdecl omp_get_num_procs()
@ cdecl omp_get_num_threads()