On 09.03.2017 10:37, Henri Verbeet wrote:
-static inline BOOL heap_free(void *mem) -{
- return HeapFree(GetProcessHeap(), 0, mem);
-}
[...]
+static inline void heap_free(void *mem) +{
- HeapFree(GetProcessHeap(), 0, mem);
+}
I'm not sure if Francois is happy with this change. In other dlls, he has made the exact opposite change in his effort to standardize those functions.