CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
file_time.h
1
2#pragma once
3
4#include <cstdint>
5
6namespace System { namespace Runtime { namespace InteropServices {
7
12{
17
19 bool Equals(const FILETIME& other) const
20 {
21 return dwLowDateTime == other.dwLowDateTime && dwHighDateTime == other.dwHighDateTime;
22 };
23};
24
25}}}
Definition: db_command.h:9
Holds file time components. This type should be allocated on stack and passed to functions by value o...
Definition: file_time.h:12
int32_t dwLowDateTime
Low datetime dword.
Definition: file_time.h:14
bool Equals(const FILETIME &other) const
Determines if the current object and the specified object are equal, i.e. represent the same file tim...
Definition: file_time.h:19
int32_t dwHighDateTime
High datetime dword.
Definition: file_time.h:16