Commit a3062f66 authored by Victor Zverovich's avatar Victor Zverovich

Disambiguate a call

parent 352b6ae4
...@@ -101,7 +101,7 @@ errno_t test::sopen_s( ...@@ -101,7 +101,7 @@ errno_t test::sopen_s(
static LONGLONG max_file_size() { return std::numeric_limits<LONGLONG>::max(); } static LONGLONG max_file_size() { return std::numeric_limits<LONGLONG>::max(); }
BOOL test::GetFileSizeEx(HANDLE hFile, PLARGE_INTEGER lpFileSize) { BOOL test::GetFileSizeEx(HANDLE hFile, PLARGE_INTEGER lpFileSize) {
BOOL result = GetFileSizeEx(hFile, lpFileSize); BOOL result = ::GetFileSizeEx(hFile, lpFileSize);
if (increase_file_size) if (increase_file_size)
lpFileSize->QuadPart = max_file_size(); lpFileSize->QuadPart = max_file_size();
return result; return result;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment