[PATCH 3/8] kernel32: added CreateFileMappingNumaA

Alexandre Julliard julliard at winehq.org
Mon May 20 15:11:58 CDT 2019


Roman Stingler <roman.stingler at gmail.com> writes:

> @@ -1347,6 +1347,15 @@ HANDLE WINAPI CreateFileMappingW( HANDLE file, LPSECURITY_ATTRIBUTES sa, DWORD p
>  }
>  
>  
> +/***********************************************************************
> + *             CreateFileMappingNumaA   (KERNEL32.@)
> + */
> +HANDLE WINAPI CreateFileMappingNumaA(HANDLE file, LPSECURITY_ATTRIBUTES sa,
> +        DWORD protect, DWORD size_high, DWORD size_low, LPCSTR name, DWORD preferred_numa_node)
> +{
> +    return CreateFileMappingW( file, sa, protect, size_high, size_low, name);
> +}

You should still print a FIXME. And forwarding an A function to a W one
is not going to work.

-- 
Alexandre Julliard
julliard at winehq.org



More information about the wine-devel mailing list