Re: [PATCH] Use CreateFileMappingW on Unicode capable Windows

2016-12-18 Thread Ivan Zhakov
On 12 August 2016 at 22:46, Ivan Zhakov wrote: > Hi, > > Some ANSI APIs like CreateFileMappingA is not available on Windows > Nano Server, while APR code in mmap/win32/mmap.c use > CreateFileMappingA unconditionally. Attached patch fixes this problem. > APR already has similar code in shmem/win32/

[PATCH] Use CreateFileMappingW on Unicode capable Windows

2016-08-12 Thread Ivan Zhakov
Hi, Some ANSI APIs like CreateFileMappingA is not available on Windows Nano Server, while APR code in mmap/win32/mmap.c use CreateFileMappingA unconditionally. Attached patch fixes this problem. APR already has similar code in shmem/win32/shm.c. -- Ivan Zhakov Index: mmap/win32/mmap.c ==