CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
file_time.h
1
2
#pragma once
3
4
#include <cstdint>
5
6
namespace
System
{
namespace
Runtime {
namespace
InteropServices {
7
11
struct
FILETIME
12
{
14
int32_t
dwLowDateTime
;
16
int32_t
dwHighDateTime
;
17
19
bool
Equals
(
const
FILETIME
& other)
const
20
{
21
return
dwLowDateTime
== other.
dwLowDateTime
&&
dwHighDateTime
== other.
dwHighDateTime
;
22
};
23
};
24
25
}}}
System
Definition:
db_command.h:9
System::Runtime::InteropServices::FILETIME
Holds file time components. This type should be allocated on stack and passed to functions by value o...
Definition:
file_time.h:12
System::Runtime::InteropServices::FILETIME::dwLowDateTime
int32_t dwLowDateTime
Low datetime dword.
Definition:
file_time.h:14
System::Runtime::InteropServices::FILETIME::Equals
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
System::Runtime::InteropServices::FILETIME::dwHighDateTime
int32_t dwHighDateTime
High datetime dword.
Definition:
file_time.h:16
include
system
runtime
interop_services
file_time.h
Generated by
1.9.4