20 May
2019
20 May
'19
9:11 p.m.
Roman Stingler <roman.stingler(a)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(a)winehq.org