mdbx-windows: add MDBX_AVOID_CRT.

Change-Id: I08233d777b318037372ec250c754f093b3047c94
This commit is contained in:
Leonid Yuriev
2018-10-19 15:14:40 +03:00
parent 06e39e2728
commit ecf214ca04
3 changed files with 14 additions and 4 deletions

View File

@@ -53,7 +53,9 @@ static int ntstatus2errcode(NTSTATUS status) {
* declare them here. Using these APIs also means we must link to
* ntdll.dll, which is not linked by default in user code. */
#pragma comment(lib, "ntdll.lib")
#ifdef MDBX_AVOID_CRT
#pragma comment(lib, "mdbx_ntdll_extra.lib")
#endif
extern NTSTATUS NTAPI NtCreateSection(
OUT PHANDLE SectionHandle, IN ACCESS_MASK DesiredAccess,