[PATCH 3/8] kernel32: added CreateFileMappingNumaA

Alexandre Julliard julliard at winehq.org
Mon May 13 06:45:19 CDT 2019


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

> +/***********************************************************************
> + *             CreateFileMappingNumaA   (KERNEL32.@)
> + */
> +HANDLE WINAPI CreateFileMappingNumaA(HANDLE file,LPSECURITY_ATTRIBUTES sa,
> +        DWORD protect, DWORD size_high, DWORD size_low, LPCSTR name,DWORD preferred_numa_node)
> +{
> +    SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
> +    return NULL;
> +}

It would be better to simply fall back to standard CreateFileMappingA.

-- 
Alexandre Julliard
julliard at winehq.org



More information about the wine-devel mailing list