Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/taviso/loadlibrary.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'peloader/winapi/SystemTime.c')
-rw-r--r--peloader/winapi/SystemTime.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/peloader/winapi/SystemTime.c b/peloader/winapi/SystemTime.c
index da831c7..0795e76 100644
--- a/peloader/winapi/SystemTime.c
+++ b/peloader/winapi/SystemTime.c
@@ -75,6 +75,13 @@ STATIC BOOL WINAPI GetProcessTimes(HANDLE hProcess, PFILETIME lpCreationTime, PF
return FALSE;
}
+STATIC BOOL WINAPI DosDateTimeToFileTime(WORD wFatDate, WORD wFatTime, PFILETIME lpFileTime)
+{
+ DebugLog("");
+ return FALSE;
+}
+
+
DECLARE_CRT_EXPORT("GetSystemTime", GetSystemTime);
DECLARE_CRT_EXPORT("SystemTimeToFileTime", SystemTimeToFileTime);
DECLARE_CRT_EXPORT("GetSystemTimePreciseAsFileTime", GetSystemTimePreciseAsFileTime);
@@ -83,3 +90,4 @@ DECLARE_CRT_EXPORT("QueryPerformanceCounter", QueryPerformanceCounter);
DECLARE_CRT_EXPORT("QueryPerformanceFrequency", QueryPerformanceFrequency);
DECLARE_CRT_EXPORT("GetTickCount", GetTickCount);
DECLARE_CRT_EXPORT("GetProcessTimes", GetProcessTimes);
+DECLARE_CRT_EXPORT("DosDateTimeToFileTime", DosDateTimeToFileTime);